PHP imagejpeg 保存文件不起作用

发布于 2024-11-19 12:41:13 字数 730 浏览 0 评论 0原文

我有 php 代码来修剪白色外边框并调整大小。当我使用 imagejpeg($newImage) 将其输出到浏览器时,它工作正常,但是当我尝试使用 imagejpeg($newImage, 'test.jpg') 保存时,它不会保存在任何地方。请帮忙?

$im = imagecreatefromjpeg($src);
$bg = imagecolorallocate($im,$rgb,$rgb,$rgb);


 // Set the header and output image.
header('Content-type: image/jpeg');
imagetrim($im,$bg);
$width = imagesx($im);
$height = imagesy($im);
$newHeight = $height * $newWidth/$width;

$newImage = imagecreatetruecolor($newWidth, $newHeight);
imagecopyresampled($newImage, $im, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height); 
//imagejpeg($newImage);
//header('Content-Type: image/jpeg');
imagejpeg($newImage, 'test.jpg');
imagejpeg($newImage);
imagedestroy($im);
imagedestroy($newImage);

I have php code to trim white outer border and resize. When I use imagejpeg($newImage) to output it the browser it works fine but when I try to save to using imagejpeg($newImage, 'test.jpg') it doesn't get saved anywhere. Help please?

$im = imagecreatefromjpeg($src);
$bg = imagecolorallocate($im,$rgb,$rgb,$rgb);


 // Set the header and output image.
header('Content-type: image/jpeg');
imagetrim($im,$bg);
$width = imagesx($im);
$height = imagesy($im);
$newHeight = $height * $newWidth/$width;

$newImage = imagecreatetruecolor($newWidth, $newHeight);
imagecopyresampled($newImage, $im, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height); 
//imagejpeg($newImage);
//header('Content-Type: image/jpeg');
imagejpeg($newImage, 'test.jpg');
imagejpeg($newImage);
imagedestroy($im);
imagedestroy($newImage);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来世叙缘 2024-11-26 12:41:13

只是将答案放入答案框中,问题是文件权限不好。
在用 PHP 编写文件之前,不要忘记使用 可写

Just to put an answer in the answer box the problem is that the file permissions were not good.
Before writing a file in PHP, do not forget to test the place you want to save files by using is_writable

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文