gpt4 book ai didi

php - Laravel - 干预图像 - 图像源不可读

转载 作者:行者123 更新时间:2023-12-05 04:07:11 25 4
gpt4 key购买 nike

我想用 Intervention Image 包调整我的图像大小,但当我尝试时它给我这个错误。

Intervention \ Image \ Exception \ NotReadableException
Image source not readable

我的代码;

if ($request->hasFile('featured_image')) {

$realname = pathinfo($request->file('featured_image')->getClientOriginalName(), PATHINFO_FILENAME);
$extension = $request->file('featured_image')->getClientOriginalExtension();
$new_name = $realname."-".time().".".$extension;
$request->file('featured_image')->storeAs('public/uploads',$new_name);
$path = Storage::url('uploads/'.$new_name);
$post->featured_image = $path;
Image::make($path)->resize(320, 240)->insert($path);
}

我该如何解决这个问题?

最佳答案

使用图像的完整路径而不是 URL,例如:

Image::make(storage_path('uploads/'. $new_name'))

关于php - Laravel - 干预图像 - 图像源不可读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48884281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com