我有一个奇怪的行为......
使用此脚本进行图像处理(旋转),每次我使用图像大小都会增加。
例如,使用它两次后,图像从168.4变为53.2 Kb。
$image_source = imagecreatefromjpeg($path_u);
$rotate = imagerotate($image_source, $angle, 0);
imageinterlace($rotate, true);
unlink($path_u);
imagejpeg($rotate, $path_u, 100);
imagedestroy($rotate);
有什么问题还是产生这种效果的 gd 函数?