gpt4 book ai didi

php - 无法从干预/图像中的给定 url 初始化": "^2. 3

转载 作者:可可西里 更新时间:2023-10-31 23:15:58 26 4
gpt4 key购买 nike

我想将来自 google plus 的图片保存为以下网址,它在本地计算机上也能正常工作,但上传到 ubuntu14 时出现以下错误。

$image = Image::make('https://lh6.googleusercontent.com/-Gcp_Wjj7yA0/AAAAAAAAAAI/AAAAAAAAAB8/hl1xcz4FnEI/photo.jpg')
->resize(100, 100)->save(public_path('image/userface/fuck.jpg'));

错误

Unable to init from given url

最佳答案

我已经找到解决这个问题的方法。当我们重新获取图像时,99% 都有效,所以我修改了保存功能以尝试保存 3 次,如果仍然失败,我们将中止。

解决方案

    $flag = true;
$try = 1;
while ($flag && $try <= 3):
try {
Image::make($path)->save(public_path("{$public_app_path}/" . $filename));
//Image migrated successfully
$flag = false;
} catch (\Exception $e) {
//not throwing error when exception occurs
}
$try++;
endwhile;

关于php - 无法从干预/图像中的给定 url 初始化": "^2. 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42364200/

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