Changes between Initial Version and Version 1 of Ticket #24380
- Timestamp:
- 05/21/2013 03:17:56 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24380
-
Property
Component
changed from
Editor
toMedia
-
Property
Component
changed from
-
Ticket #24380 – Description
initial v1 12 12 13 13 in the elseif block starting at line 337 i have added a variable called compression and changed the code as follow: 14 14 {{{ 15 15 elseif ( 'image/png' == $mime_type ) { 16 16 // convert from full colors to index colors, like original PNG. … … 23 23 return new WP_Error( 'image_save_error', __('Image Editor Save Failed') ); 24 24 } 25 25 }}} 26 26 This convert the scale 0->100 into a 0->9 scale that matches the parameters from imaging. 27 27