2

我正在使用 Laravel 5 并且我已经集成了干预我正在尝试以两种不同的尺寸调整图像的大小但是保存功能只是将图像保存为一种尺寸这里是我的控制器的代码

$image = Input::file('image');// Getting image
    $destinationPath = 'uploads'; // upload path
    $extension = $image->getClientOriginalExtension(); //Getting Image Extension
    $fileName = rand(11111,99999).'.'.$extension; // renaming image
    $img = Image::make($image);
    $medium_image = $img->resize(25,25);
    $large_image = $img->resize(50,50);
    $image->move($destinationPath, $fileName);
    $medium_image->save('uploads/medium'.$fileName);
    $large_image->save('uploads/large'.$fileName); // uploading file to given path

干预只是调整具有更大尺寸的图像大小,它正在调整具有相同尺寸的第二张图像的大小,有人可以帮忙吗?

4

1 回答 1

0

就我而言,我正在调整大小和裁剪(适合),但最终图像仍然与原始图像相同。发现我必须添加函数编码,以生成操纵图像

return $image->encode('jpg', 80);

在您的情况下,尝试将编码图像保存到这些变量中

$medium_image = $img->resize(25,25)->encode('jpg', 80);
$large_image = $img->resize(50,50)->encode('jpg', 80);
于 2020-04-14T07:05:38.317 回答