Thumbnail quality suggestion
-
I use this plugin on several sites and found it very usefull. Sometimes users do not understand what is optimal web size or simply cannot resize their images before upload. They send them directly i.e. from 16 Mpix camera with q=98 and then complain about slow galleries or problems with disk quotas.
This plugin partially solves such problems. However, sometimes people use additional thumbnail sizes and on some sites one uploaded image can generate e.g. twelve thumbnails with total size significantly greater then original image size. Especially when the quality in the plugin options is set to low values like 70%.
This is because the quality of thumbnails in WP is set to 90% by default. My suggestion is to set thumbnail quality to the same value as original image. This is simple, you need add the following code to plugin:add_filter( 'jpeg_quality', 'jr_thumbnail_quality' ); function jr_thumbnail_quality( $quality ) { return intval(get_option('jr_resizeupload_quality')); }
Of course, I know the idea of plugin is to do only one thing and to do it well. But in my humble opinion this is just integral supplement of what the plugin should do. Setting the quality of original image without corresponding quality of thumbnails is not a job with such a great significance.
- The topic ‘Thumbnail quality suggestion’ is closed to new replies.