Media: Progressive enhancement for Imagick; add profiles to whitelist.

- Progressive enhancement for optional compression improvements and stripping meta.
- Whitelist IPTC and XMP profiles to maintain Copyright and Rights Usage Terms.
- Whitelist EXIF profile to maintain orientation information. If handled on upload in the future, it can be stripped as well.

Fixes #33642. See #28634.
Props joemcgill, juliobox, ahockley, markoheijnen, adamsilverstein, wonderboymusic, mikeschroder.
Built from https://develop.svn.wordpress.org/trunk@36891


git-svn-id: http://core.svn.wordpress.org/trunk@36858 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mike Schroder 2016-03-09 04:44:26 +00:00
parent d27ae61355
commit 1e120a01ec
2 changed files with 72 additions and 55 deletions

View File

@ -62,25 +62,21 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
'writeimage', 'writeimage',
'getimageblob', 'getimageblob',
'getimagegeometry', 'getimagegeometry',
'getimagedepth',
'getimageformat', 'getimageformat',
'setimageformat', 'setimageformat',
'setimagecompression', 'setimagecompression',
'setimagecompressionquality', 'setimagecompressionquality',
'setimagedepth',
'setimagepage', 'setimagepage',
'setimageproperty', 'setoption',
'setinterlacescheme',
'scaleimage', 'scaleimage',
'cropimage', 'cropimage',
'rotateimage', 'rotateimage',
'flipimage', 'flipimage',
'flopimage', 'flopimage',
'unsharpmaskimage',
); );
// Now, test for deep requirements within Imagick. // Now, test for deep requirements within Imagick.
if ( ! ( defined( 'imagick::COMPRESSION_JPEG' ) && defined( 'imagick::FILTER_TRIANGLE' ) ) ) if ( ! defined( 'imagick::COMPRESSION_JPEG' ) )
return false; return false;
if ( array_diff( $required_methods, get_class_methods( 'Imagick' ) ) ) if ( array_diff( $required_methods, get_class_methods( 'Imagick' ) ) )
@ -304,7 +300,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
if ( in_array( $filter_name, $allowed_filters ) && defined( 'Imagick::' . $filter_name ) ) { if ( in_array( $filter_name, $allowed_filters ) && defined( 'Imagick::' . $filter_name ) ) {
$filter = constant( 'Imagick::' . $filter_name ); $filter = constant( 'Imagick::' . $filter_name );
} else { } else {
$filter = Imagick::FILTER_TRIANGLE; $filter = defined( 'Imagick::FILTER_TRIANGLE' ) ? Imagick::FILTER_TRIANGLE : false;
} }
/** /**
@ -317,15 +313,8 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
* *
* @param bool $strip_meta Whether to strip image metadata during resizing. Default true. * @param bool $strip_meta Whether to strip image metadata during resizing. Default true.
*/ */
$strip_meta = apply_filters( 'image_strip_meta', $strip_meta ); if ( apply_filters( 'image_strip_meta', $strip_meta ) ) {
$this->strip_meta(); // Fail silently if not supported.
// Strip image meta.
if ( $strip_meta ) {
$strip_result = $this->strip_meta();
if ( is_wp_error( $strip_result ) ) {
return $strip_result;
}
} }
try { try {
@ -334,20 +323,34 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
* whenever the output size is less that 1/3 of the original image size (1/3^2 ~= .111), * whenever the output size is less that 1/3 of the original image size (1/3^2 ~= .111),
* unless we would be resampling to a scale smaller than 128x128. * unless we would be resampling to a scale smaller than 128x128.
*/ */
$resize_ratio = ( $dst_w / $this->size['width'] ) * ( $dst_h / $this->size['height'] ); if ( is_callable( array( $this->image, 'sampleImage' ) ) ) {
$sample_factor = 5; $resize_ratio = ( $dst_w / $this->size['width'] ) * ( $dst_h / $this->size['height'] );
$sample_factor = 5;
if ( $resize_ratio < .111 && ( $dst_w * $sample_factor > 128 && $dst_h * $sample_factor > 128 ) ) { if ( $resize_ratio < .111 && ( $dst_w * $sample_factor > 128 && $dst_h * $sample_factor > 128 ) ) {
$this->image->sampleImage( $dst_w * $sample_factor, $dst_h * $sample_factor ); $this->image->sampleImage( $dst_w * $sample_factor, $dst_h * $sample_factor );
}
} }
// Resize to the final output size. /*
$this->image->setOption( 'filter:support', '2.0' ); * Use resizeImage() when it's available and a valid filter value is set.
$this->image->resizeImage( $dst_w, $dst_h, $filter, 1 ); * Otherwise, fall back to the scaleImage() method for resizing, which
* results in better image quality over resizeImage() with default filter
* settings and retains backwards compatibility with pre 4.5 functionality.
*/
if ( is_callable( array( $this->image, 'resizeImage' ) ) && $filter ) {
$this->image->setOption( 'filter:support', '2.0' );
$this->image->resizeImage( $dst_w, $dst_h, $filter, 1 );
} else {
$this->image->scaleImage( $dst_w, $dst_h );
}
// Set appropriate quality settings after resizing. // Set appropriate quality settings after resizing.
if ( 'image/jpeg' == $this->mime_type ) { if ( 'image/jpeg' == $this->mime_type ) {
$this->image->unsharpMaskImage( 0.25, 0.25, 8, 0.065 ); if ( is_callable( array( $this->image, 'unsharpMaskImage' ) ) ) {
$this->image->unsharpMaskImage( 0.25, 0.25, 8, 0.065 );
}
$this->image->setOption( 'jpeg:fancy-upsampling', 'off' ); $this->image->setOption( 'jpeg:fancy-upsampling', 'off' );
} }
@ -358,22 +361,32 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
$this->image->setOption( 'png:exclude-chunk', 'all' ); $this->image->setOption( 'png:exclude-chunk', 'all' );
} }
/** /*
* If alpha channel is not defined, set it opaque. * If alpha channel is not defined, set it opaque.
* *
* Note that Imagick::getImageAlphaChannel() is only available if Imagick * Note that Imagick::getImageAlphaChannel() is only available if Imagick
* has been compiled against ImageMagick version 6.4.0 or newer. * has been compiled against ImageMagick version 6.4.0 or newer.
*/ */
if ( method_exists( $this->image, 'getImageAlphaChannel') && $this->image->getImageAlphaChannel() === Imagick::ALPHACHANNEL_UNDEFINED ) { if ( is_callable( array( $this->image, 'getImageAlphaChannel' ) )
$this->image->setImageAlphaChannel( Imagick::ALPHACHANNEL_OPAQUE ); && is_callable( array( $this->image, 'setImageAlphaChannel' ) )
&& defined( Imagick::ALPHACHANNEL_UNDEFINED )
&& defined( Imagick::ALPHACHANNEL_OPAQUE )
) {
if ( $this->image->getImageAlphaChannel() === Imagick::ALPHACHANNEL_UNDEFINED ) {
$this->image->setImageAlphaChannel( Imagick::ALPHACHANNEL_OPAQUE );
}
} }
// Limit the bit depth of resized images to 8 bits per channel. // Limit the bit depth of resized images to 8 bits per channel.
if ( 8 < $this->image->getImageDepth() ) { if ( is_callable( array( $this->image, 'getImageDepth' ) ) && is_callable( array( $this->image, 'setImageDepth' ) ) ) {
$this->image->setImageDepth( 8 ); if ( 8 < $this->image->getImageDepth() ) {
$this->image->setImageDepth( 8 );
}
} }
$this->image->setInterlaceScheme( Imagick::INTERLACE_NO ); if ( is_callable( array( $this->image, 'setInterlaceScheme' ) ) && defined( 'Imagick::INTERLACE_NO' ) ) {
$this->image->setInterlaceScheme( Imagick::INTERLACE_NO );
}
} }
catch ( Exception $e ) { catch ( Exception $e ) {
@ -662,36 +675,40 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
* @return true|WP_Error True if stripping metadata was successful. WP_Error object on error. * @return true|WP_Error True if stripping metadata was successful. WP_Error object on error.
*/ */
protected function strip_meta() { protected function strip_meta() {
if ( ! is_callable( array( $this->image, 'getImageProfiles' ) ) ) {
return new WP_Error( 'image_strip_meta_error', __('Imagick::getImageProfiles() is required to strip image meta.') );
}
if ( ! is_callable( array( $this->image, 'removeImageProfile' ) ) ) {
return new WP_Error( 'image_strip_meta_error', __('Imagick::removeImageProfile() is required to strip image meta.') );
}
/*
* Protect a few profiles from being stripped for the following reasons:
*
* - icc: Color profile information
* - icm: Color profile information
* - iptc: Copyright data
* - exif: Orientation data
* - xmp: Rights usage data
*/
$protected_profiles = array(
'icc',
'icm',
'iptc',
'exif',
'xmp',
);
try { try {
// Strip profiles. // Strip profiles.
foreach ( $this->image->getImageProfiles( '*', true ) as $key => $value ) { foreach ( $this->image->getImageProfiles( '*', true ) as $key => $value ) {
if ( $key != 'icc' && $key != 'icm' ) { if ( ! in_array( $key, $protected_profiles ) ) {
$this->image->removeImageProfile( $key ); $this->image->removeImageProfile( $key );
} }
} }
// Strip image properties.
if ( method_exists( $this->image, 'deleteImageProperty' ) ) {
$this->image->deleteImageProperty( 'comment' );
$this->image->deleteImageProperty( 'Thumb::URI' );
$this->image->deleteImageProperty( 'Thumb::MTime' );
$this->image->deleteImageProperty( 'Thumb::Size' );
$this->image->deleteImageProperty( 'Thumb::Mimetype' );
$this->image->deleteImageProperty( 'software' );
$this->image->deleteImageProperty( 'Thumb::Image::Width' );
$this->image->deleteImageProperty( 'Thumb::Image::Height' );
$this->image->deleteImageProperty( 'Thumb::Document::Pages' );
} else {
$this->image->setImageProperty( 'comment', '' );
$this->image->setImageProperty( 'Thumb::URI', '' );
$this->image->setImageProperty( 'Thumb::MTime', '' );
$this->image->setImageProperty( 'Thumb::Size', '' );
$this->image->setImageProperty( 'Thumb::Mimetype', '' );
$this->image->setImageProperty( 'software', '' );
$this->image->setImageProperty( 'Thumb::Image::Width', '' );
$this->image->setImageProperty( 'Thumb::Image::Height', '' );
$this->image->setImageProperty( 'Thumb::Document::Pages', '' );
}
} catch ( Exception $e ) { } catch ( Exception $e ) {
return new WP_Error( 'image_strip_meta_error', $e->getMessage() ); return new WP_Error( 'image_strip_meta_error', $e->getMessage() );
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-beta2-36890'; $wp_version = '4.5-beta2-36891';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.