在使用Intervention laravel上传到数字海洋之前,如何调整图像大小?

时间:2019-12-04 04:51:25

标签: laravel digital-ocean intervention

我想在数字海洋上上传图像。但是在上传之前,我想调整它的大小。我正在使用干预包来调整图像大小。但是我遇到了错误。

Command (GetRealPath) is not available for driver (Gd).

检查我的代码-

$img = $request->file;
$extension = $img->extension();
$mimeType = $img->getMimeType();

$image_resize = Image::make($img->getRealPath());
$image_resize->resize(1000, 350);

$folder = 'sportsconnect-web-api/'.Auth::user()->fname.'_'.Auth::user()->lname.'_'.$u_id.'/profile';
$image_name = time().'.'.$extension;
$digital_path = Storage::disk('do_spaces')->putFileAs($folder, $image_resize, $image_name, 'public');

请帮助我解决问题。谢谢。

0 个答案:

没有答案