X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/61343b82c4f0da4c68e4c6373daafff4a81efdd1..a349837896628462bf8c9bdc27d1477a10fe03eb:/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..f3c9451e 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -119,6 +119,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { if ( ! is_file( $this->file ) && ! preg_match( '|^https?://|', $this->file ) ) return new WP_Error( 'error_loading_image', __('File doesn’t exist?'), $this->file ); + /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */ // Even though Imagick uses less PHP memory than GD, set higher limit for users that have low PHP.ini limits @ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) ); @@ -142,7 +143,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { if ( is_wp_error( $updated_size ) ) return $updated_size; - return $this->set_quality(); + return $this->set_quality( $this->quality ); } /** @@ -152,15 +153,19 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { * @access public * * @param int $quality Compression Quality. Range: [1,100] - * @return boolean|WP_Error + * @return boolean|WP_Error True if set successfully; WP_Error on failure. */ public function set_quality( $quality = null ) { - if ( !$quality ) + $quality_result = parent::set_quality( $quality ); + if ( is_wp_error( $quality_result ) ) { + return $quality_result; + } else { $quality = $this->quality; + } try { - if( 'image/jpeg' == $this->mime_type ) { - $this->image->setImageCompressionQuality( apply_filters( 'jpeg_quality', $quality, 'image_resize' ) ); + if ( 'image/jpeg' == $this->mime_type ) { + $this->image->setImageCompressionQuality( $quality ); $this->image->setImageCompression( imagick::COMPRESSION_JPEG ); } else { @@ -171,7 +176,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { return new WP_Error( 'image_quality_error', $e->getMessage() ); } - return parent::set_quality( $quality ); + return true; } /** @@ -242,17 +247,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 +361,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; } /** @@ -436,11 +452,12 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { $perms = $stat['mode'] & 0000666; //same permissions as parent folder, strip off the executable bits @ chmod( $filename, $perms ); + /** This filter is documented in wp-includes/class-wp-image-editor-gd.php */ return array( - 'path' => $filename, - 'file' => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ), - 'width' => $this->size['width'], - 'height' => $this->size['height'], + 'path' => $filename, + 'file' => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ), + 'width' => $this->size['width'], + 'height' => $this->size['height'], 'mime-type' => $mime_type, ); }