Viewing 1 replies (of 1 total)
  • Plugin Author joppuyo

    (@joppuyo)

    Hey! Is this your original image? By the looks of it, it seems to be pretty low quality to begin with. I would say probably JPEG quality 40-60.

    It’s not unusual that if you re-encode a low quality JPEG, the resulting quality will be even worse.

    The plugin uses the same JPEG quality as WordPress, which is 82 by default. You can change this using jpeg_quality filter, for example:

    add_filter('jpeg_quality', function() {
        return 92;
    });
    

    If you want to change the quality just for cropping, you can use aiarc_jpeg_quality filter, for example:

    add_filter('aiarc_jpeg_quality', function() {
        return 92;
    });
    
    • This reply was modified 3 years, 5 months ago by joppuyo.
    • This reply was modified 3 years, 5 months ago by joppuyo.
Viewing 1 replies (of 1 total)
  • The topic ‘Image Quality’ is closed to new replies.