Magento 1.9 Cache Image Optimization – Kraken Extension Guide

cacheimagemagento-1.9

I have my product images optimized very well, but magento cached images are very poor and larger (already cleared cache, it's what magento is doing to the optimized images which is making them larger). I have tried Kraken.io's plugin but it's so resource hungry and slows down page load for some reason on the front end more than it's worth because it is auto-optimizing images. Is there an alternative extension out there that will let me just optimize the cached images once in a while? I'd prefer Kraken's API as I already have a (paid) account with them, but I don't want anything automated, I'd rather do that myself when the website is not busy to reduce server load. Alternatively, would there be any issues with just downloading the cached directory now and again, optimizing it and re-uploading it to the server?

Best Answer

you can try this solution

1. Try TinyPNG's Extension for magento

https://www.magentocommerce.com/magento-connect/compress-jpeg-png-images.html

The plugin compress images well enough (Try there compression engine https://tinypng.com/), When you view a product in your webshop Magento creates different image sizes in its cache folders. This extension will compress these images for you automatically. since it work while creating cache it can slow the page if there are lot of products on the page, this happen only when cache is create otherwise the website will work as normal.

2. You can set Image quality while creating cache.

<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(195, 280); ?>" />

to

<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(195, 280)->setQuality(70); ?>" />

we have set the quality setQuality(70) of the cache image that is generating lower the quality , lower the file size. just set the quality that best suits you.

Related Topic