mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Media: Respect EXIF Rotations.
Previously, the logic to determine EXIF rotation information was not providing the correct rotation. This patch respects the information properly by swapping some of the `flip()` logic on certain rotations. Props tbember, SergeyBiryukov, costdev, mikeschroder, adamsilverstein. Fixes #54937. Built from https://develop.svn.wordpress.org/trunk@54265 git-svn-id: http://core.svn.wordpress.org/trunk@53824 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fbe7454070
commit
4084c0dd6c
@ -512,7 +512,7 @@ abstract class WP_Image_Editor {
|
|||||||
switch ( $orientation ) {
|
switch ( $orientation ) {
|
||||||
case 2:
|
case 2:
|
||||||
// Flip horizontally.
|
// Flip horizontally.
|
||||||
$result = $this->flip( true, false );
|
$result = $this->flip( false, true );
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
// Rotate 180 degrees or flip horizontally and vertically.
|
// Rotate 180 degrees or flip horizontally and vertically.
|
||||||
@ -521,14 +521,14 @@ abstract class WP_Image_Editor {
|
|||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
// Flip vertically.
|
// Flip vertically.
|
||||||
$result = $this->flip( false, true );
|
$result = $this->flip( true, false );
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
// Rotate 90 degrees counter-clockwise and flip vertically.
|
// Rotate 90 degrees counter-clockwise and flip vertically.
|
||||||
$result = $this->rotate( 90 );
|
$result = $this->rotate( 90 );
|
||||||
|
|
||||||
if ( ! is_wp_error( $result ) ) {
|
if ( ! is_wp_error( $result ) ) {
|
||||||
$result = $this->flip( false, true );
|
$result = $this->flip( true, false );
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -541,7 +541,7 @@ abstract class WP_Image_Editor {
|
|||||||
$result = $this->rotate( 90 );
|
$result = $this->rotate( 90 );
|
||||||
|
|
||||||
if ( ! is_wp_error( $result ) ) {
|
if ( ! is_wp_error( $result ) ) {
|
||||||
$result = $this->flip( true, false );
|
$result = $this->flip( false, true );
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.1-alpha-54264';
|
$wp_version = '6.1-alpha-54265';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user