JPEG quality
-
I see that the plugin sets WP’s JPEG quality to 85%. The default is 90%, so this plugin is reducing quality even more than the WP default before running its own optimizations. Please make this optional, at least for paid users! We should be able to avoid WP’s compression altogether, as if we were uploading to tinypng.com directly.
For anyone else who wants to override this with their own plugin or functions.php file:
function tp_jpeg_quality() { if( class_exists( 'Tiny_Plugin' ) ) return 100; } add_filter( 'jpeg_quality', 'tp_jpeg_quality', 20 ); add_filter( 'wp_editor_set_quality', 'tp_jpeg_quality', 20 );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘JPEG quality’ is closed to new replies.