Is there any extension which is specifically goes for fill image color like module. I have 1000’s of images which all same size but have white space around all image, instead of using photoshop can i use PHP to process that image to have different(brown color – sine it is background) instead of white. If there is any extension please suggest me.
Thanks in advance
If you want to have same background for all images,you can override the magento class that applies background color.
File is
app/code/core/Mage/Catalog/Model/Product/Image.phpFind the code that looks like this
protected $_backgroundColor = array(255, 255, 255);and specify the RGB value of the colour that you want.