我正在尝试使用Laravel Nova管理面板和api创建图像/用户头像。我需要为每次下载生成3张图片-化身,缩略图和预览。
public function fields(Request $request)
{
return [
//some fields else
Avatar::make(__('Profile Photo'), 'avatar_path')
->path('images/users/avatars')
->storeAs(function (Request $request){
$file = $request->file('avatar_path');
return $request->user()->id.'_'. sha1($file->getClientOriginalName()).'.'.$file->getClientOriginalExtension();
})
->preview(function ($value, $disk){
return $this->getCroppedAvatar($value, 'prev', 636);
})
->thumbnail(function ($value, $disk){
return $this->getCroppedAvatar($value, 'thumb', 64);
})
->disableDownload(),
在此字段中,我正在使用以下方法
public static function getCroppedAvatar($value, $type, $size)
{
$path = str_replace('avatars', $type , $value);
if ($value && !Storage::exists($value)) {
return null;
}
if ($value && is_file(Storage::path($path)) && !is_dir(Storage::path($path))) {
return Storage::url($path);
}
if ($value) {
Image::make(Storage::path($value))
->widen($size)->save(Storage::path($path));
Log::info('New preview is ' . Storage::path($path));
return Storage::url($path);
}
return null;
}
在这种情况下,Laravel Nova正在运行,但是如果我尝试从API Controller调用getCroppedAvatar,则Image :: make行上会出现错误:
Unsupported image type. GD driver is only able to decode JPG, PNG, GIF or WebP files. {"userId":16,"exception":"[object] (Intervention\\Image\\Exception\\NotReadableException(code: 0): Unsupported image type. GD driver is only able to decode JPG, PNG, GIF or WebP files. at /var/www/tracker/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php:59)
API控制器上的代码
Storage::put($fileDirectory.'/'.$fileName, $image);
User::getCroppedAvatar($fileDirectory.'/'.$fileName,'prev', 636);
User::getCroppedAvatar($fileDirectory.'/'.$fileName,'thumb', 64);
在两种情况下,我都使用png和jpg文件。参数值相同。 我该如何解决? 谢谢!
答案 0 :(得分:1)
最后,我找到了解决方案。据我了解,存储类创建的图像类型不正确,因此我从API Controller更改了这一行
Storage::put($fileDirectory.'/'.$fileName, $image);
为此:
Image::make($file)->save(Storage::path($filePath));