我写了这个简短的函数,它是从电子邮件链接触发的,只要有新照片上传到我的服务器,它就会通知我:
$fotofil = $_GET['fotofil'];
$image = imagecreatefromjpeg("media/$fotofil");
$image = imagerotate($image, 270, 0);
imagejpeg($image, "media/$fotofil");
echo "The photo has been rotated:<br />";
echo "<img src='media/$fotofil' style='max-height:90vh;' />";
该函数将图像顺时针旋转 90 度并以原始文件名保存。出于某种原因,这只有效一次。如果我再次触发同一个链接,它会保持第一次触发时的旋转。为什么?
白衣染霜花