I display some data on my website and one of the data feed elements is an image.
[title] => Product title
[description] => some description
[image] => www.some-domain.com/product-image/p12345.jpg
I then display this image using
<img alt="product" src="<?=$data['image']?>" />
Most of the images are 80×80, 120×100 or other less than 150 in width, which perfectly fit in the website template, but some of them are quite large such as 800×600 which distort the layout. I want a control on these types.
I tried to set WIDTH=”150″, but as the width vary they dont look good. I was thinking If I could set a fixed width to images, say, larger than 250px then I can live with it for now.
Any ideas how to achieve this?
Thanks
I have used getimagesize() for exactly this.