Question

How can I optimize PNG images in Magento? The is already compression for jpg files, but no compression for png files in /lib/Varien/Image/Adapter/Gd2.php.

Thanks a lot.

Was it helpful?

Solution

Unlike JPEG format PNG is not supporting compression via downsampling. You can try to reduce size of your PNG files by exporting the same file as 8-bit PNG. Also there are some 3rd party services for compressing PNGs like TinyPNG or PunyPNG.

Eventually none of them is supported neither by Magento nor by GD2 lib. So you either have to do it manually before uploading images to Magento or to write your own integration.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top