Can’t stop wordpress from compressing images by 60%+
-
Ever since I switched from wordpress.com to www.ads-software.com the images I’ve uploaded have been overcompressed and look pixelated in places. If I save the images the file size is at least 60% lower than the original file.
I’ve tried adding the following code to my theme’s functions.php:
add_filter(‘jpeg_quality’, function($arg){return 100;});
add_filter(‘wp_editor_set_quality’, function($arg){return 100;});
I’ve tried disabling all my plugins, I’ve tried switching themes, including to the default one that wordpress.com used. I’ve disabled imagick and gd in my host’s PHP settings. I’ve tried uploading different file types including PNG. uploading images of all sizes. I’ve tried removing the image size limits.None of these have done anything to alter the image quality.
I have no idea what to try next or what could possibly be causing it at this point. Any suggestions are welcome.
- The topic ‘Can’t stop wordpress from compressing images by 60%+’ is closed to new replies.