Changeset 59315 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 10/29/2024 01:11:00 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r59247 r59315 272 272 * are properly sized without affecting previous `getImageGeometry` behavior. 273 273 */ 274 if ( ( ! $width || ! $height ) && ( 'image/avif' === $this->mime_type || 'image/heic' === $this->mime_type) ) {274 if ( ( ! $width || ! $height ) && ( 'image/avif' === $this->mime_type || wp_is_heic_image_mime_type( $this->mime_type ) ) ) { 275 275 $size = wp_getimagesize( $this->file ); 276 276 $width = $size[0];
Note: See TracChangeset
for help on using the changeset viewer.