Improved Thumbnail Quality
-
For a long time, one of the things that has irritated me with WordPress is that I have to modify code with every release to have it generate decent quality thumbnails.
If any of the developers read this, please consider looking closely at the following change for WP 2.3(Beta 2):
File: /wp-admin/includes/image.php
Line Number: approximately 84Change:
if (!imagejpeg( $thumbnail, $thumbpath ) ) {
To this:
if (!imagejpeg( $thumbnail, $thumbpath, 100 ) ) {
Note the 100 added. This will significantly improve the dreadful quality of the default thumbnails when large images are uploaded.
Alternatively, making this a variable that can be defined in the Admin Options would allow people to choose the level of quality for their thumbnail.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Improved Thumbnail Quality’ is closed to new replies.