Changes between Initial Version and Version 1 of Ticket #53941, comment 1
- Timestamp:
- 08/18/2021 04:22:38 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #53941, comment 1
initial v1 2 2 3 3 Can you also add how you're setting the image conversion, for example GIF to JPEG? 4 5 I assume that you're using something akin to this? 6 7 {{{#!php 8 <?php 9 10 add_filter( 11 'image_editor_output_format', 12 function( $formats ) { 13 $formats['image/gif'] = 'image/jpeg'; 14 15 return $formats; 16 } 17 ); 18 }}}