antagonist
Registered Member
- Oct 15, 2012
- 72
- 28
Boy, was I annoyed.
I pretty much accepted the fact that WordPress reduces the uploaded image quality by default - which sucks because I like my images clean and crisp.
Finally I found a neat little snippet to stop WordPress from reducing the image quality:
Put this into your functions.php and you're good.
~
Credit goes to http://wp-snippets.com/keep-wordpress-from-compressing-jpgs/
PS: It seems that you need PHP 5.3.1+ installed on your webserver to make this work.
I pretty much accepted the fact that WordPress reduces the uploaded image quality by default - which sucks because I like my images clean and crisp.
Finally I found a neat little snippet to stop WordPress from reducing the image quality:
Code:
<?php add_filter('jpeg_quality', function($arg){return 100;}); ?>
Put this into your functions.php and you're good.
~
Credit goes to http://wp-snippets.com/keep-wordpress-from-compressing-jpgs/
PS: It seems that you need PHP 5.3.1+ installed on your webserver to make this work.