gpt4 book ai didi

Laravel 5.2 干预图像 500 服务器错误

转载 作者:行者123 更新时间:2023-12-04 04:46:06 26 4
gpt4 key购买 nike

当我上传大图像 (4.2 MB) 时,干预图像抛出 500 错误...

private function resizeImage($path, $imgName){
$sizes = getimagesize($path.$imgName);
if($sizes[0] > $sizes[1]){
ImageManagerStatic::make($path.$imgName)->fit(920,474)->insert(public_path() . "/uploads/applications/watermark.png",'bottom-right', 30, 30)->save($path."1_".$imgName);
}else{
ImageManagerStatic::make($path.$imgName)->heighten(474)->insert(public_path() . "/uploads/applications/watermark.png",'bottom-right', 30, 30)->save($path."1_".$imgName);
}
ImageManagerStatic::make($path.$imgName)->fit(440,226)->save($path."2_".$imgName);
File::delete($path.$imgName);
}

它适用于较小的文件。 upload_max_filesize=10M .当我评论这个函数时,它起作用了:/

最佳答案

我有同样的问题并增加 upload_max_filesize还不够。
我也加了memory_limit to 256M并重新启动了服务器。然后图像与干预一起工作。
【以上改动在php.ini文件中】

您可能想要更改 upload_max_filesizememory_limit根据您使用的文件容量。

关于Laravel 5.2 干预图像 500 服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34543732/

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