我正在使用aq_resize类调整图像大小并保存它们,但在aq_resize.php中有一个wordpress函数
($editor = wp_get_image_editor( $img_path ))
总是返回错误(wp_error)......
以下是故障代码的一部分:
$editor = wp_get_image_editor( $img_path );
if ( is_wp_error( $editor ) || is_wp_error( $editor->resize( $width, $height, $crop ) ) )
return false;
$resized_file = $editor->save();