有人可以帮我解决如何在Laravel中实现调整大小的图像吗?
我只有这个代码:
if($request->hasFile('image')){
if (Input::file('image')->isValid()) {
$file = Input::file('image');
$destination = base_path() . '/public/images/ServiceImages';
$extension = Input::file('image')->getClientOriginalExtension();
$fileName = rand(111,99999).'.'.$extension;
if(!empty($data['Image'])){
unlink($destination.$data['Image']);
}
$file->move($destination, $fileName);
$service->image=$fileName;
}
}
答案 0 :(得分:50)
Laravel没有默认的图片大小。 但大多数laravel开发人员使用&#strong; 图像干预'在处理图像。 (易于使用)
安装(图像干预):
第1步运行
composer require intervention/image
第2步在您的config / app.php上:
在$ providers数组中,添加以下内容:
Intervention\Image\ImageServiceProvider::class
在$ aliases数组中,添加以下内容:
'Image' => Intervention\Image\Facades\Image::class
如果您遇到问题,您的GD librabry将会丢失,请将其置于
~~在控制器上使用~~
第3步 在您的控制器之上
use Intervention\Image\ImageManagerStatic as Image;
第4步 关于你的方法(有几种方法,但这会给你一个想法)
if($request->hasFile('image')) {
$image = $request->file('image');
$filename = $image->getClientOriginalName();
$image_resize = Image::make($image->getRealPath());
$image_resize->resize(300, 300);
$image_resize->save(public_path('images/ServiceImages/' .$filename));
}
参考here
答案 1 :(得分:2)
试试这个Image intervention开源PHP图像处理和操作库
答案 2 :(得分:0)
尽管这是一篇老文章,但我考虑发布一种独立于安装任何软件包的解决方案。
$image = $request->file('image');
$image_name = rand(111111, 888999)*time() .'.'. $image->getClientOriginalExtension();
$thumb_name = rand(111111, 888999)*time() .'.'. $image->getClientOriginalExtension();
$destinationPath = public_path('/uploads');
$image->move($destinationPath, $image_name);
$orgImgPath = $destinationPath. '/'.$image_name;
$thumbPath = $destinationPath. '/'.$thumb_name;
shell_exec("convert $orgImgPath -resize 200x200\! $thumbPath");
由于会强制将图像大小调整为200x200。但是如果您想保持宽高比,那就!需要删除。此代码将保存原始上传的内容,并将生成缩略图。
答案 3 :(得分:0)
对于此任务,我建议使用Intervention Image。
只需用作曲家安装
composer require intervention/image
并像这样使用它:
\Intervention\Image\ImageManagerStatic::make('public/foo')->fit(100)->save($path);
备注
服务提供商
干预映像为Laravel提供了服务提供商。您可以按照here中的说明手动添加服务提供商。之后,您可以将配置文件推送到Laravel。但是,配置只有一个选项,那就是映像驱动程序。 gd
是默认设置,因此,如果您不想更改它,则无需使用服务提供商和配置。
别名,您可以在config/app
中创建别名,而不是服务提供商:
'Image' => Intervention\Image\ImageManagerStatic::class
然后您可以像这样使用它:
\Image::make('public/foo')->fit(100)->save($path);