gpt4 book ai didi

php - imagerotate() 不起作用

转载 作者:行者123 更新时间:2023-12-04 15:59:47 24 4
gpt4 key购买 nike

我对 imagerotate() PHP 函数有疑问。我运行下面的脚本,它使用 imagejpeg() 成功创建了新图像,但新图像与原始图像相同,因此不会旋转它。它在 Apache error.log 中没有显示任何错误消息,所以我不知道。

$file 包含此格式的文件名:IMG_8841.JPG

希望你能帮帮我,谢谢。

$filename='./original/'.$file;
$new='./rotated/'.$file;
$original_photo = imagecreatefromjpeg($filename);
imagerotate ($original_photo , 90 , 0 );
imagejpeg($original_photo, $new);
imagedestroy($original_photo);

最佳答案

尝试

$original_photo = imagerotate($original_photo, 90, 0);

否则你的对象没有被修改。

或者更好的事件:

$new_photo = imagerotate ($original_photo , 90 , 0 );
imagejpeg($new_photo, $new);
imagedestroy($original_photo);
imagedestroy($new_photo);

关于php - imagerotate() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13474634/

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