Changeset 52640 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 01/25/2022 01:54:01 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r51790 r52640 590 590 $this->image->rotateImage( new ImagickPixel( 'none' ), 360 - $angle ); 591 591 592 // Normali se EXIF orientation data so that display is consistent across devices.592 // Normalize EXIF orientation data so that display is consistent across devices. 593 593 if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { 594 594 $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT ); … … 628 628 } 629 629 630 // Normali se EXIF orientation data so that display is consistent across devices.630 // Normalize EXIF orientation data so that display is consistent across devices. 631 631 if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { 632 632 $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT );
Note: See TracChangeset
for help on using the changeset viewer.