Make WordPress Core

Ticket #37140: 37140-1.2.diff

File 37140-1.2.diff, 2.4 KB (added by kirasong, 8 years ago)

Merged with existing Imagick tests, shifted to 90 degree rotation in test, moved to using one test image, comments.

  • src/wp-includes/class-wp-image-editor-imagick.php

    diff --git a/src/wp-includes/class-wp-image-editor-imagick.php b/src/wp-includes/class-wp-image-editor-imagick.php
    index 8f9b43c..34dd539 100644
    a b class WP_Image_Editor_Imagick extends WP_Image_Editor { 
    549549                try {
    550550                        $this->image->rotateImage( new ImagickPixel('none'), 360-$angle );
    551551
     552                        // Normalise Exif orientation data so that display is consistent across devices.
     553                        $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT );
     554
    552555                        // Since this changes the dimensions of the image, update the size.
    553556                        $result = $this->update_size();
    554557                        if ( is_wp_error( $result ) )
  • tests/phpunit/tests/image/editor_imagick.php

    diff --git a/tests/phpunit/data/images/test-image-upside-down.jpg b/tests/phpunit/data/images/test-image-upside-down.jpg
    new file mode 100644
    index 0000000..74505cf
    Binary files /dev/null and b/tests/phpunit/data/images/test-image-upside-down.jpg differ
    diff --git a/tests/phpunit/tests/image/editor_imagick.php b/tests/phpunit/tests/image/editor_imagick.php
    index c475201..e113b77 100644
    a b class Tests_Image_Editor_Imagick extends WP_Image_UnitTestCase { 
    542542
    543543                $this->assertTrue( $result );
    544544        }
     545
     546        /**
     547         * Test resetting Exif orientation data on rotate
     548         *
     549         * @ticket 37140
     550         */
     551        public function test_remove_orientation_data_on_rotate() {
     552                $file = DIR_TESTDATA . "/images/test-image-upside-down.jpg";
     553                $data = wp_read_image_metadata( $file );
     554
     555                // The orientation value 3 is equivalent to rotated upside down (180 degrees).
     556                $this->assertEquals( 3, intval( $data['orientation'] ), 'Orientation value read from does not match image file Exif data: ' . $file );
     557
     558                $temp_file = wp_tempnam( $file );
     559                $image = wp_get_image_editor( $file );
     560
     561                // Test a value that would not lead back to 1, as WP is resetting the value to 1 manually.
     562                $image->rotate( 90 );
     563                $ret = $image->save( $temp_file, 'image/jpeg' );
     564
     565                $data = wp_read_image_metadata( $ret['path'] );
     566
     567                // Make sure the image is no longer in The Upside Down Exif orientation.
     568                $this->assertEquals( 1, intval( $data['orientation'] ), 'Orientation Exif data was not updated after rotating image: ' . $file );
     569
     570                // Remove both the generated file ending in .tmp and tmp.jpg due to wp_tempnam().
     571                unlink( $temp_file );
     572                unlink( $ret['path'] );
     573        }
     574
    545575}