Product Images – How to Decrease Download Size of a Product Image

productproduct-images

you can use inspect element to see product image source and download the images .

the sizes of image are more than 400 kb.

I want to reduce the size of the image.

media.phtml =http://pastebin.com/QBVrCu2X

please help me to find solution.

Best Answer

Use the Resize function in magento like;

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

or use the bellow extension allows you to optimize all the images in your site, also you can Schedule your Optimization.

Related Topic