Make WordPress Core

Ticket #35725: 35725.18.diff

File 35725.18.diff, 23.4 KB (added by adamsilverstein, 4 years ago)
  • src/wp-admin/includes/image-edit.php

    diff --git src/wp-admin/includes/image-edit.php src/wp-admin/includes/image-edit.php
    index 0430dbefbf..942dffb2e8 100644
    function wp_stream_image( $image, $mime_type, $attachment_id ) { 
    306306                        case 'image/gif':
    307307                                header( 'Content-Type: image/gif' );
    308308                                return imagegif( $image );
     309                        case 'image/webp':
     310                                if ( function_exists( 'imagewebp' ) ) {
     311                                        header( 'Content-Type: image/webp' );
     312                                        return imagewebp( $image, null, 90 );
     313                                }
     314                                return false;
    309315                        default:
    310316                                return false;
    311317                }
    function wp_save_image_file( $filename, $image, $mime_type, $post_id ) { 
    391397                                return imagepng( $image, $filename );
    392398                        case 'image/gif':
    393399                                return imagegif( $image, $filename );
     400                        case 'image/webp':
     401                                if ( function_exists( 'imagewebp' ) ) {
     402                                        /**
     403                                         * Filters the WebP compression quality for image file saves.
     404                                         *
     405                                         * @since 5.8.0
     406                                         *
     407                                         * @param int    $quality Quality level between 0 (low) and 100 (high) of the WebP.
     408                                         */
     409                                        return imagewebp( $image, null, apply_filters( 'webp_quality', 75 ) );
     410                                }
     411                                return false;
    394412                        default:
    395413                                return false;
    396414                }
  • src/wp-admin/includes/image.php

    diff --git src/wp-admin/includes/image.php src/wp-admin/includes/image.php
    index 673c1dff01..c40f270001 100644
    function wp_generate_attachment_metadata( $attachment_id, $file ) { 
    517517                                case 'image/png':
    518518                                        $ext = '.png';
    519519                                        break;
     520                                case 'image/webp':
     521                                        $ext = '.webp';
     522                                        break;
    520523                        }
    521524                        $basename = str_replace( '.', '-', wp_basename( $file ) ) . '-image' . $ext;
    522525                        $uploaded = wp_upload_bits( $basename, '', $metadata['image']['data'] );
    function file_is_valid_image( $path ) { 
    913916 * @return bool True if suitable, false if not suitable.
    914917 */
    915918function file_is_displayable_image( $path ) {
    916         $displayable_image_types = array( IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP, IMAGETYPE_ICO );
     919        $displayable_image_types = array( IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP, IMAGETYPE_ICO, IMAGETYPE_WEBP ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound
    917920
    918921        $info = wp_getimagesize( $path );
    919922        if ( empty( $info ) ) {
    function load_image_to_edit( $attachment_id, $mime_type, $size = 'full' ) { 
    963966                case 'image/gif':
    964967                        $image = imagecreatefromgif( $filepath );
    965968                        break;
     969                case 'image/webp':
     970                        if ( function_exists( 'imagecreatefromwebp' ) ) {
     971                                $image = imagecreatefromwebp( $filepath );
     972                        } else {
     973                                $image = false;
     974                        }
     975                        break;
    966976                default:
    967977                        $image = false;
    968978                        break;
  • src/wp-admin/includes/media.php

    diff --git src/wp-admin/includes/media.php src/wp-admin/includes/media.php
    index 14a8d99b49..bdfb65d103 100644
    function wp_media_upload_handler() { 
    993993function media_sideload_image( $file, $post_id = 0, $desc = null, $return = 'html' ) {
    994994        if ( ! empty( $file ) ) {
    995995
    996                 $allowed_extensions = array( 'jpg', 'jpeg', 'jpe', 'png', 'gif' );
     996                $allowed_extensions = array( 'jpg', 'jpeg', 'jpe', 'png', 'gif', 'webp' );
    997997
    998998                /**
    999999                 * Filters the list of allowed file extensions when sideloading an image from a URL.
  • src/wp-admin/includes/schema.php

    diff --git src/wp-admin/includes/schema.php src/wp-admin/includes/schema.php
    index a59c7c36ce..6f528f2288 100644
    We hope you enjoy your new site. Thanks! 
    12151215                'jpeg',
    12161216                'png',
    12171217                'gif',
     1218                'webp',
    12181219                // Video.
    12191220                'mov',
    12201221                'avi',
  • src/wp-includes/class-wp-image-editor-gd.php

    diff --git src/wp-includes/class-wp-image-editor-gd.php src/wp-includes/class-wp-image-editor-gd.php
    index ed0a7be279..42a8929ff8 100644
    class WP_Image_Editor_GD extends WP_Image_Editor { 
    6969                                return ( $image_types & IMG_PNG ) != 0;
    7070                        case 'image/gif':
    7171                                return ( $image_types & IMG_GIF ) != 0;
     72                        case 'image/webp':
     73                                return ( $image_types & IMG_WEBP ) != 0; // phpcs:ignore PHPCompatibility.Constants.NewConstants.img_webpFound
    7274                }
    7375
    7476                return false;
    class WP_Image_Editor_GD extends WP_Image_Editor { 
    99101                        return new WP_Error( 'error_loading_image', __( 'File doesn’t exist?' ), $this->file );
    100102                }
    101103
    102                 $this->image = @imagecreatefromstring( $file_contents );
     104                // WebP may not work with imagecreatefromstring().
     105                if (
     106                        function_exists( 'imagecreatefromwebp' ) &&
     107                        ( 'image/webp' === wp_get_image_mime( $this->file ) )
     108                ) {
     109                        $this->image = @imagecreatefromwebp( $this->file );
     110                } else {
     111                        $this->image = @imagecreatefromstring( $file_contents );
     112                }
    103113
    104114                if ( ! is_gd_image( $this->image ) ) {
    105115                        return new WP_Error( 'invalid_image', __( 'File is not an image.' ), $this->file );
    class WP_Image_Editor_GD extends WP_Image_Editor { 
    459469                        if ( ! $this->make_image( $filename, 'imagejpeg', array( $image, $filename, $this->get_quality() ) ) ) {
    460470                                return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
    461471                        }
     472                } elseif ( 'image/webp' == $mime_type ) {
     473                        if ( ! function_exists( 'imagewebp' ) || ! $this->make_image( $filename, 'imagewebp', array( $image, $filename, $this->get_quality() ) ) ) {
     474                                return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
     475                        }
    462476                } else {
    463477                        return new WP_Error( 'image_save_error', __( 'Image Editor Save Failed' ) );
    464478                }
    class WP_Image_Editor_GD extends WP_Image_Editor { 
    502516                        case 'image/gif':
    503517                                header( 'Content-Type: image/gif' );
    504518                                return imagegif( $this->image );
     519                        case 'image/webp':
     520                                if ( function_exists( 'imagewebp' ) ) {
     521                                        header( 'Content-Type: image/webp' );
     522                                        return imagewebp( $this->image, null, $this->get_quality() );
     523                                }
     524                                // Fall back to the default if webp isn't supported.
    505525                        default:
    506526                                header( 'Content-Type: image/jpeg' );
    507527                                return imagejpeg( $this->image, null, $this->get_quality() );
  • src/wp-includes/class-wp-theme.php

    diff --git src/wp-includes/class-wp-theme.php src/wp-includes/class-wp-theme.php
    index d9ccf6b6ba..b365f45715 100644
    final class WP_Theme implements ArrayAccess { 
    11411141                        return false;
    11421142                }
    11431143
    1144                 foreach ( array( 'png', 'gif', 'jpg', 'jpeg' ) as $ext ) {
     1144                foreach ( array( 'png', 'gif', 'jpg', 'jpeg', 'webp' ) as $ext ) {
    11451145                        if ( file_exists( $this->get_stylesheet_directory() . "/screenshot.$ext" ) ) {
    11461146                                $this->cache_add( 'screenshot', 'screenshot.' . $ext );
    11471147                                if ( 'relative' === $uri ) {
  • src/wp-includes/compat.php

    diff --git src/wp-includes/compat.php src/wp-includes/compat.php
    index 7f6c59f03c..59e5700439 100644
    if ( ! function_exists( 'is_iterable' ) ) { 
    370370                return ( is_array( $var ) || $var instanceof Traversable );
    371371        }
    372372}
     373
     374// WebP constants may not be defined, even in cases where the format is supported.
     375if ( ! defined( 'IMAGETYPE_WEBP' ) ) {
     376        define( 'IMAGETYPE_WEBP', 18 );
     377}
     378if ( ! defined( 'IMG_WEBP' ) ) {
     379        define( 'IMG_WEBP', IMAGETYPE_WEBP ); // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound
     380}
  • src/wp-includes/customize/class-wp-customize-media-control.php

    diff --git src/wp-includes/customize/class-wp-customize-media-control.php src/wp-includes/customize/class-wp-customize-media-control.php
    index d327a4fa38..22bf75dad5 100644
    class WP_Customize_Media_Control extends WP_Customize_Control { 
    9191                                // Fake an attachment model - needs all fields used by template.
    9292                                // Note that the default value must be a URL, NOT an attachment ID.
    9393                                $ext  = substr( $this->setting->default, -3 );
    94                                 $type = in_array( $ext, array( 'jpg', 'png', 'gif', 'bmp' ), true ) ? 'image' : 'document';
     94                                $type = in_array( $ext, array( 'jpg', 'png', 'gif', 'bmp', 'webp' ), true ) ? 'image' : 'document';
    9595
    9696                                $default_attachment = array(
    9797                                        'id'    => 1,
  • src/wp-includes/deprecated.php

    diff --git src/wp-includes/deprecated.php src/wp-includes/deprecated.php
    index 72a23cd836..2c5f24bde0 100644
    function gd_edit_image_support($mime_type) { 
    33403340                                return (imagetypes() & IMG_PNG) != 0;
    33413341                        case 'image/gif':
    33423342                                return (imagetypes() & IMG_GIF) != 0;
     3343                        case 'image/webp':
     3344                                return (imagetypes() & IMG_WEBP) != 0; // phpcs:ignore PHPCompatibility.Constants.NewConstants.img_webpFound
    33433345                }
    33443346        } else {
    33453347                switch( $mime_type ) {
    function gd_edit_image_support($mime_type) { 
    33493351                                return function_exists('imagecreatefrompng');
    33503352                        case 'image/gif':
    33513353                                return function_exists('imagecreatefromgif');
     3354                        case 'image/webp':
     3355                                return function_exists('imagecreatefromwebp');
    33523356                }
    33533357        }
    33543358        return false;
  • src/wp-includes/formatting.php

    diff --git src/wp-includes/formatting.php src/wp-includes/formatting.php
    index b716c6bc1f..8dda8c738d 100644
    function translate_smiley( $matches ) { 
    33183318
    33193319        $matches    = array();
    33203320        $ext        = preg_match( '/\.([^.]+)$/', $img, $matches ) ? strtolower( $matches[1] ) : false;
    3321         $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' );
     3321        $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'webp' );
    33223322
    33233323        // Don't convert smilies that aren't images - they're probably emoji.
    33243324        if ( ! in_array( $ext, $image_exts, true ) ) {
  • src/wp-includes/functions.php

    diff --git src/wp-includes/functions.php src/wp-includes/functions.php
    index 56d5fd9f43..027ed3074c 100644
    function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) { 
    28862886                                        'image/gif'  => 'gif',
    28872887                                        'image/bmp'  => 'bmp',
    28882888                                        'image/tiff' => 'tif',
     2889                                        'image/webp' => 'webp',
    28892890                                )
    28902891                        );
    28912892
    function wp_get_image_mime( $file ) { 
    30633064                } else {
    30643065                        $mime = false;
    30653066                }
     3067
     3068                // WebP support took longer to land in Exif than GD.
     3069                if ( ! $mime ) {
     3070                        $handle = fopen( $file, 'rb' );
     3071                        if ( $handle ) {
     3072                                $magic = bin2hex( fread( $handle, 12 ) );
     3073                                if (
     3074                                        // RIFF.
     3075                                        ( 0 === strpos( $magic, '52494646' ) ) &&
     3076                                        // WEBP.
     3077                                        ( 16 === strpos( $magic, '57454250' ) )
     3078                                ) {
     3079                                        $mime = 'image/webp';
     3080                                }
     3081                                fclose( $handle );
     3082                        }
     3083                }
    30663084        } catch ( Exception $e ) {
    30673085                $mime = false;
    30683086        }
    function wp_get_mime_types() { 
    31013119                        'png'                          => 'image/png',
    31023120                        'bmp'                          => 'image/bmp',
    31033121                        'tiff|tif'                     => 'image/tiff',
     3122                        'webp'                         => 'image/webp',
    31043123                        'ico'                          => 'image/x-icon',
    31053124                        'heic'                         => 'image/heic',
    31063125                        // Video formats.
    function wp_get_ext_types() { 
    32223241        return apply_filters(
    32233242                'ext2type',
    32243243                array(
    3225                         'image'       => array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico', 'heic' ),
     3244                        'image'       => array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico', 'heic', 'webp' ),
    32263245                        'audio'       => array( 'aac', 'ac3', 'aif', 'aiff', 'flac', 'm3a', 'm4a', 'm4b', 'mka', 'mp1', 'mp2', 'mp3', 'ogg', 'oga', 'ram', 'wav', 'wma' ),
    32273246                        'video'       => array( '3g2', '3gp', '3gpp', 'asf', 'avi', 'divx', 'dv', 'flv', 'm4v', 'mkv', 'mov', 'mp4', 'mpeg', 'mpg', 'mpv', 'ogm', 'ogv', 'qt', 'rm', 'vob', 'wmv' ),
    32283247                        'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt', 'pages', 'pdf', 'xps', 'oxps', 'rtf', 'wp', 'wpd', 'psd', 'xcf' ),
  • src/wp-includes/media.php

    diff --git src/wp-includes/media.php src/wp-includes/media.php
    index 89b972603b..e71cb40829 100644
    function wp_show_heic_upload_error( $plupload_settings ) { 
    49744974 * Allows PHP's getimagesize() to be debuggable when necessary.
    49754975 *
    49764976 * @since 5.7.0
     4977 * @since 5.8.0 Added support for WebP images.
    49774978 *
    49784979 * @param string $filename   The file path.
    49794980 * @param array  $image_info Optional. Extended image information (passed by reference).
    function wp_getimagesize( $filename, array &$image_info = null ) { 
    49884989                defined( 'WP_DEBUG' ) && WP_DEBUG
    49894990        ) {
    49904991                if ( 2 === func_num_args() ) {
    4991                         return getimagesize( $filename, $image_info );
     4992                        return _wp_get_image_size( $filename, $image_info );
    49924993                } else {
    4993                         return getimagesize( $filename );
     4994                        return _wp_get_image_size( $filename );
    49944995                }
    49954996        }
    49964997
    function wp_getimagesize( $filename, array &$image_info = null ) { 
    50055006         */
    50065007        if ( 2 === func_num_args() ) {
    50075008                // phpcs:ignore WordPress.PHP.NoSilencedErrors
    5008                 return @getimagesize( $filename, $image_info );
     5009                return @_wp_get_image_size( $filename, $image_info );
    50095010        } else {
    50105011                // phpcs:ignore WordPress.PHP.NoSilencedErrors
    5011                 return @getimagesize( $filename );
     5012                return @_wp_get_image_size( $filename );
     5013        }
     5014}
     5015
     5016/**
     5017 * Get the image size, with support for WebP images.
     5018 *
     5019 * @since 5.8.0
     5020 * @access private
     5021 *
     5022 * @param string $filename  The file path.
     5023 * @param array  $imageinfo Extended image information, passed by reference.
     5024 */
     5025function _wp_get_image_size( $filename, &$imageinfo = array() ) {
     5026        // Try getimagesize() first.
     5027        $info = getimagesize( $filename, $imageinfo );
     5028        if ( false !== $info ) {
     5029                return $info;
     5030        }
     5031        // For PHP versions that don't support WebP images, extract the image
     5032        // size info from the file headers.
     5033        if ( 'image/webp' === wp_get_image_mime( $filename ) ) {
     5034                try {
     5035                        $handle = fopen( $filename, 'rb' );
     5036                        if ( $handle ) {
     5037                                $magic = fread( $handle, 40 );
     5038                                fclose( $handle );
     5039
     5040                                // Make sure we got enough bytes.
     5041                                if ( strlen( $magic ) < 40 ) {
     5042                                        return false;
     5043                                }
     5044
     5045                                $width  = false;
     5046                                $height = false;
     5047
     5048                                // The headers are a little different for each of the three formats.
     5049                                switch ( substr( $magic, 12, 4 ) ) {
     5050                                        // Lossy WebP.
     5051                                        case 'VP8 ':
     5052                                                $parts  = unpack( 'v2', substr( $magic, 26, 4 ) );
     5053                                                $width  = (int) ( $parts[1] & 0x3FFF );
     5054                                                $height = (int) ( $parts[2] & 0x3FFF );
     5055                                                break;
     5056                                        // Lossless WebP.
     5057                                        case 'VP8L':
     5058                                                $parts  = unpack( 'C4', substr( $magic, 21, 4 ) );
     5059                                                $width  = (int) ( $parts[1] | ( ( $parts[2] & 0x3F ) << 8 ) ) + 1;
     5060                                                $height = (int) ( ( ( $parts[2] & 0xC0 ) >> 6 ) | ( $parts[3] << 2 ) | ( ( $parts[4] & 0x03 ) << 10 ) ) + 1;
     5061                                                break;
     5062                                        // Animated/alpha WebP.
     5063                                        case 'VP8X':
     5064                                                // Pad 24-bit int.
     5065                                                $width = unpack( 'V', substr( $magic, 24, 3 ) . "\x00" );
     5066                                                $width = (int) ( $width[1] & 0xFFFFFF ) + 1;
     5067
     5068                                                // Pad 24-bit int.
     5069                                                $height = unpack( 'V', substr( $magic, 27, 3 ) . "\x00" );
     5070                                                $height = (int) ( $height[1] & 0xFFFFFF ) + 1;
     5071                                                break;
     5072                                }
     5073
     5074                                // Mimic the native return format.
     5075                                if ( $width && $height ) {
     5076                                        return array(
     5077                                                $width,
     5078                                                $height,
     5079                                                IMAGETYPE_WEBP, // phpcs:ignore PHPCompatibility.Constants.NewConstants.imagetype_webpFound
     5080                                                sprintf(
     5081                                                        'width="%d" height="%d"',
     5082                                                        $width,
     5083                                                        $height
     5084                                                ),
     5085                                                'mime' => 'image/webp',
     5086                                        );
     5087                                }
     5088
     5089                                // The image could not be parsed.
     5090                                return false;
     5091                        }
     5092                } catch ( Exception $e ) {
     5093                        return false;
     5094                }
     5095
     5096                return false;
    50125097        }
    50135098}
  • src/wp-includes/post.php

    diff --git src/wp-includes/post.php src/wp-includes/post.php
    index f8ab2583ae..f30f0fec47 100644
    function wp_attachment_is( $type, $post = null ) { 
    65376537
    65386538        switch ( $type ) {
    65396539                case 'image':
    6540                         $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' );
     6540                        $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'webp' );
    65416541                        return in_array( $ext, $image_exts, true );
    65426542
    65436543                case 'audio':
  • tests/phpunit/tests/functions.php

    diff --git tests/phpunit/data/images/test-image.webp tests/phpunit/data/images/test-image.webp
    new file mode 100644
    index 0000000000..37ab153807
    Binary files /dev/null and tests/phpunit/data/images/test-image.webp differ
    diff --git tests/phpunit/data/images/webp-animated.webp tests/phpunit/data/images/webp-animated.webp
    new file mode 100644
    index 0000000000..c60d334a82
    Binary files /dev/null and tests/phpunit/data/images/webp-animated.webp differ
    diff --git tests/phpunit/data/images/webp-lossless.webp tests/phpunit/data/images/webp-lossless.webp
    new file mode 100644
    index 0000000000..7a3a06e0b4
    Binary files /dev/null and tests/phpunit/data/images/webp-lossless.webp differ
    diff --git tests/phpunit/data/images/webp-lossy.webp tests/phpunit/data/images/webp-lossy.webp
    new file mode 100644
    index 0000000000..c8b0e25391
    Binary files /dev/null and tests/phpunit/data/images/webp-lossy.webp differ
    diff --git tests/phpunit/data/images/webp-transparent.webp tests/phpunit/data/images/webp-transparent.webp
    new file mode 100644
    index 0000000000..c4b24a08be
    Binary files /dev/null and tests/phpunit/data/images/webp-transparent.webp differ
    diff --git tests/phpunit/tests/functions.php tests/phpunit/tests/functions.php
    index f485d3b4ec..75a2ecf5e0 100644
    class Tests_Functions extends WP_UnitTestCase { 
    12251225                $this->assertSame( $expected, wp_get_image_mime( $file ) );
    12261226        }
    12271227
     1228        /**
     1229         * @ticket 35725
     1230         * @dataProvider _wp_getimagesize
     1231         */
     1232        public function test_wp_getimagesize( $file, $expected ) {
     1233                if ( ! is_callable( 'exif_imagetype' ) && ! function_exists( 'getimagesize' ) ) {
     1234                        $this->markTestSkipped( 'The exif PHP extension is not loaded.' );
     1235                }
     1236
     1237                $result = wp_getimagesize( $file );
     1238
     1239                // The getimagesize() function varies in its response, so
     1240                // let's restrict comparison to expected keys only.
     1241                if ( is_array( $expected ) ) {
     1242                        foreach ( $expected as $k => $v ) {
     1243                                $this->assertEquals( true, isset( $result[ $k ] ) );
     1244                                $this->assertEquals( $expected[ $k ], $result[ $k ] );
     1245                        }
     1246                } else {
     1247                        $this->assertEquals( $expected, $result );
     1248                }
     1249        }
     1250
    12281251        /**
    12291252         * @ticket 39550
    12301253         * @dataProvider _wp_check_filetype_and_ext_data
    class Tests_Functions extends WP_UnitTestCase { 
    13131336                                DIR_TESTDATA . '/images/test-image-mime-jpg.png',
    13141337                                'image/jpeg',
    13151338                        ),
     1339                        // Animated WebP.
     1340                        array(
     1341                                DIR_TESTDATA . '/images/webp-animated.webp',
     1342                                'image/webp',
     1343                        ),
     1344                        // Lossless WebP.
     1345                        array(
     1346                                DIR_TESTDATA . '/images/webp-lossless.webp',
     1347                                'image/webp',
     1348                        ),
     1349                        // Lossy WebP.
     1350                        array(
     1351                                DIR_TESTDATA . '/images/webp-lossy.webp',
     1352                                'image/webp',
     1353                        ),
     1354                        // Transparent WebP.
     1355                        array(
     1356                                DIR_TESTDATA . '/images/webp-transparent.webp',
     1357                                'image/webp',
     1358                        ),
     1359                        // Not an image.
     1360                        array(
     1361                                DIR_TESTDATA . '/uploads/dashicons.woff',
     1362                                false,
     1363                        ),
     1364                );
     1365
     1366                return $data;
     1367        }
     1368
     1369        /**
     1370         * Data profider for test_wp_getimagesize();
     1371         */
     1372        public function _wp_getimagesize() {
     1373                $data = array(
     1374                        // Standard JPEG.
     1375                        array(
     1376                                DIR_TESTDATA . '/images/test-image.jpg',
     1377                                array(
     1378                                        50,
     1379                                        50,
     1380                                        IMAGETYPE_JPEG,
     1381                                        'width="50" height="50"',
     1382                                        'mime' => 'image/jpeg',
     1383                                ),
     1384                        ),
     1385                        // Standard GIF.
     1386                        array(
     1387                                DIR_TESTDATA . '/images/test-image.gif',
     1388                                array(
     1389                                        50,
     1390                                        50,
     1391                                        IMAGETYPE_GIF,
     1392                                        'width="50" height="50"',
     1393                                        'mime' => 'image/gif',
     1394                                ),
     1395                        ),
     1396                        // Standard PNG.
     1397                        array(
     1398                                DIR_TESTDATA . '/images/test-image.png',
     1399                                array(
     1400                                        50,
     1401                                        50,
     1402                                        IMAGETYPE_PNG,
     1403                                        'width="50" height="50"',
     1404                                        'mime' => 'image/png',
     1405                                ),
     1406                        ),
     1407                        // Image with wrong extension.
     1408                        array(
     1409                                DIR_TESTDATA . '/images/test-image-mime-jpg.png',
     1410                                array(
     1411                                        50,
     1412                                        50,
     1413                                        IMAGETYPE_JPEG,
     1414                                        'width="50" height="50"',
     1415                                        'mime' => 'image/jpeg',
     1416                                ),
     1417                        ),
     1418                        // Animated WebP.
     1419                        array(
     1420                                DIR_TESTDATA . '/images/webp-animated.webp',
     1421                                array(
     1422                                        100,
     1423                                        100,
     1424                                        IMAGETYPE_WEBP,
     1425                                        'width="100" height="100"',
     1426                                        'mime' => 'image/webp',
     1427                                ),
     1428                        ),
     1429                        // Lossless WebP.
     1430                        array(
     1431                                DIR_TESTDATA . '/images/webp-lossless.webp',
     1432                                array(
     1433                                        1200,
     1434                                        675,
     1435                                        IMAGETYPE_WEBP,
     1436                                        'width="1200" height="675"',
     1437                                        'mime' => 'image/webp',
     1438                                ),
     1439                        ),
     1440                        // Lossy WebP.
     1441                        array(
     1442                                DIR_TESTDATA . '/images/webp-lossy.webp',
     1443                                array(
     1444                                        1200,
     1445                                        675,
     1446                                        IMAGETYPE_WEBP,
     1447                                        'width="1200" height="675"',
     1448                                        'mime' => 'image/webp',
     1449                                ),
     1450                        ),
     1451                        // Transparent WebP.
     1452                        array(
     1453                                DIR_TESTDATA . '/images/webp-transparent.webp',
     1454                                array(
     1455                                        1200,
     1456                                        675,
     1457                                        IMAGETYPE_WEBP,
     1458                                        'width="1200" height="675"',
     1459                                        'mime' => 'image/webp',
     1460                                ),
     1461                        ),
    13161462                        // Not an image.
    13171463                        array(
    13181464                                DIR_TESTDATA . '/uploads/dashicons.woff',
  • tests/phpunit/tests/image/functions.php

    diff --git tests/phpunit/tests/image/functions.php tests/phpunit/tests/image/functions.php
    index 1694c1e7f1..0658e45117 100644
    class Tests_Image_Functions extends WP_UnitTestCase { 
    5959                        'test-image.psd',
    6060                        'test-image-zip.tiff',
    6161                        'test-image.jpg',
     62                        'webp-animated.webp',
     63                        'webp-lossless.webp',
     64                        'webp-lossy.webp',
     65                        'webp-transparent.webp',
    6266                );
    6367
    6468                // IMAGETYPE_ICO is only defined in PHP 5.3+.
    class Tests_Image_Functions extends WP_UnitTestCase { 
    9296                        'test-image.jpg',
    9397                );
    9498
     99                // Add WebP images if the image editor supports them.
     100                $file   = DIR_TESTDATA . '/images/test-image.webp';
     101                $editor = wp_get_image_editor( $file );
     102                if ( ( ! is_wp_error( $editor ) ) && $editor->supports_mime_type( 'image/webp' ) ) {
     103                        $files = array_merge(
     104                                $files,
     105                                array(
     106                                        'webp-animated.webp',
     107                                        'webp-lossless.webp',
     108                                        'webp-lossy.webp',
     109                                        'webp-transparent.webp',
     110                                )
     111                        );
     112                }
     113
    95114                // IMAGETYPE_ICO is only defined in PHP 5.3+.
    96115                if ( defined( 'IMAGETYPE_ICO' ) ) {
    97116                        $files[] = 'test-image.ico';
    class Tests_Image_Functions extends WP_UnitTestCase { 
    174193                        'image/png',
    175194                );
    176195
     196                // Include WebP in tests when platform supports it.
     197                if ( function_exists( 'imagewebp' ) ) {
     198                        array_push( $mime_types, 'image/webp' );
     199                }
     200
    177201                // Test each image editor engine.
    178202                foreach ( $classes as $class ) {
    179203                        $img    = new $class( DIR_TESTDATA . '/images/canola.jpg' );
    class Tests_Image_Functions extends WP_UnitTestCase { 
    270294                        'jpe'  => 'image/jpeg',
    271295                        'gif'  => 'image/gif',
    272296                        'png'  => 'image/png',
    273                         'unk'  => 'image/jpeg', // Default, unknown.
     297                        'webp' => 'image/webp',
     298                        'unk'  => 'image/jpeg',   // Default, unknown.
    274299                );
    275300
    276301                // Test each image editor engine.
  • tests/phpunit/tests/image/resize.php

    diff --git tests/phpunit/tests/image/resize.php tests/phpunit/tests/image/resize.php
    index 3e3255e6a5..517ab45389 100644
    abstract class WP_Tests_Image_Resize_UnitTestCase extends WP_Image_UnitTestCase 
    6464                unlink( $image );
    6565        }
    6666
     67        function test_resize_webp() {
     68                $file   = DIR_TESTDATA . '/images/test-image.webp';
     69                $editor = wp_get_image_editor( $file );
     70
     71                // Check if the editor supports the webp mime type.
     72                if ( is_wp_error( $editor ) || ! $editor->supports_mime_type( 'image/webp' ) ) {
     73                        $this->markTestSkipped( sprintf( 'Skipping test: no WebP support in the editor engine %s on this system.', $this->editor_engine ) );
     74                } else {
     75                        $image = $this->resize_helper( $file, 25, 25 );
     76                        $this->assertSame( 'test-image-25x25.webp', wp_basename( $image ) );
     77                        list($w, $h, $type) = wp_getimagesize( $image );
     78                        $this->assertSame( 25, $w );
     79                        $this->assertSame( 25, $h );
     80                        $this->assertSame( IMAGETYPE_WEBP, $type );
     81                        unlink( $image );
     82                }
     83        }
     84
    6785        function test_resize_larger() {
    6886                // image_resize() should refuse to make an image larger.
    6987                $image = $this->resize_helper( DIR_TESTDATA . '/images/test-image.jpg', 100, 100 );