I'm using Apache with mod_pagespeed. For some reason I can't figure out, mod_pagespeed thinks an image is much smaller than it actually is, which means once the image gets scaled up, it's really blurry.
The image in question is a CSS background-image.
Is there a way to disable mod_pagespeed image compression for a specific file?
I would recommend that you use data-pagespeed-no-transform like <img src="do-not-modify.png" data-pagespeed-no-transform />
to get the effect you want for that single image. You might have to use <div style="background-image: url(../images/do-not-modify.png); height: 200px; width: 400px;" data-pagespeed-no-transform></div>
or similar if background gives you trouble. The main reason seems to be that PageSpeed cannot figure out the image height/width. Source: Google PageSpeed tools
The mod_pagespeed documentation was not clear on this - my impression was that ModPagespeedDisallow
only works for URLs containing HTML, but they also seem to work for individual files:
<IfModule pagespeed_module>
ModPagespeedDisallow "https://www.example.com/assets/image.jpg"
</IfModule>
Put this in apache2's configuration somewhere. We put it in the virtualhost configuration in /etc/apache2/sites-available
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With