Changeset 57614 for trunk/src/wp-includes/class-wp-image-editor-gd.php
- Timestamp:
- 02/13/2024 11:52:04 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r57607 r57614 506 506 507 507 if ( function_exists( 'imageinterlace' ) ) { 508 /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */ 508 /** 509 * Filters whether to output progressive images (if available). 510 * 511 * @since 6.5.0 512 * 513 * @param bool $interlace Whether to use progressive images for output if available. Default false. 514 * @param string $mime_type The mime type being saved. 515 */ 509 516 imageinterlace( $image, apply_filters( 'image_save_progressive', false, $mime_type ) ); 510 517 }
Note: See TracChangeset
for help on using the changeset viewer.