我的解决方案是在image-rotation-repair.php
$image = _rotate_image_resource( $image, $orientation );
使用
$rotated = imagerotate( $image, $orientation, 0 );
if ( is_resource( $rotated ) ) {
imagedestroy( $image );
$image = $rotated;
}
Note: 通常,修改插件的代码是一个糟糕的解决方案,但在这种特殊情况下
_rotate_image_resource()
已弃用,因此插件作者最终可能会替换该函数。我在插件的
support forum.