Hi @dano55,
If your site isn’t changing the filesize, then it’s possible that your server host hasn’t installed or turned on a compression library. Here’s a PHP script for seeing if ‘ImageMagick’ is installed, you can probably search for one that will check on ‘gd’ too:
* http://stackoverflow.com/questions/4208253/verify-imagemagick-installation
As for turning off compression entirely:
WordPress’ image compression settings work in reverse. So setting compression to 0 means the MOST compression, but setting it to 100 means NO compression. So add this line of code to your functions.php file (or just set this plugin to compression level 100:
add_filter( 'jpeg_quality', 100 );
Thread Starter
Dan
(@dano55)
Thank you for the advice Mike. Being a pro photographer for many years it’s driving nuts how compressed my images end up.
Will try you suggestion later as I have bigger fish to fry.
will try you plugin again….
Dan
Hi all. The support thread @zehawk linked to above is resolved. There was a misunderstanding about what 0% & 100% meant, and the plugin worked fine.
I’ll update help text in WP-RIQ, but for wrap-up here:
* 100% setting (aka, 100% quality) ==> Least compression & biggest filesizes
* 0% setting (0% quality) ==> Most compression & smallest filesizes