X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/61343b82c4f0da4c68e4c6373daafff4a81efdd1..refs/tags/wordpress-3.7:/wp-includes/class-wp-image-editor-imagick.php diff --git a/wp-includes/class-wp-image-editor-imagick.php b/wp-includes/class-wp-image-editor-imagick.php index f803943a..2e1bebc9 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -242,17 +242,21 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { } /** - * Processes current image and saves to disk - * multiple sizes from single source. - * - * 'width' and 'height' are required. - * 'crop' defaults to false when not provided. + * Resize multiple images from a single source. * * @since 3.5.0 * @access public * - * @param array $sizes { {'width'=>int, 'height'=>int, ['crop'=>bool]}, ... } - * @return array + * @param array $sizes { + * An array of image size arrays. Default sizes are 'small', 'medium', 'large'. + * + * @type array $size { + * @type int $width Image width. + * @type int $height Image height. + * @type bool $crop Optional. Whether to crop the image. Default false. + * } + * } + * @return array An array of resized images metadata by size. */ public function multi_resize( $sizes ) { $metadata = array(); @@ -352,11 +356,18 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { */ try { $this->image->rotateImage( new ImagickPixel('none'), 360-$angle ); + + // Since this changes the dimensions of the image, update the size. + $result = $this->update_size(); + if ( is_wp_error( $result ) ) + return $result; + + $this->image->setImagePage( $this->size['width'], $this->size['height'], 0, 0 ); } catch ( Exception $e ) { return new WP_Error( 'image_rotate_error', $e->getMessage() ); } - return $this->update_size(); + return true; } /**