Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Within Magento's media.phtml file you can get the image height for the first product image with:

<?php $imageWidth = $this->helper('catalog/image')->init($_product, 'image')->getOriginalWidth(); ?>

However this does not work for further product images (within the foreach loop):

<?php if (count($this->getGalleryImages()) > 1): ?>
<?php foreach ($this->getGalleryImages() as $_image): ?>

neither does..

<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile())->getOriginalWidth(); ?>

Anyone have the answer?

share|improve this question

2 Answers

up vote 2 down vote accepted

Catalog image helper is lacking support for those kind of operations. You will have to initialize your image model and get sizes from there. So:

<?php foreach ($this->getGalleryImages() as $_image): ?>
  <?php $image = new Varien_Image($_image->getPath()); ?>
  <?php echo $image->getOriginalWidth(); ?>
  <?php echo $image->getOriginalHeight(); ?>
<?php endforeach; ?>
share|improve this answer
Thanks for your help @Jernej, I ended up using the PHP getimagesize function (see my answer below). I'm not sure if there is any reason not to use either one. – Lex Jan 8 at 15:42

An alternative to Jernej's answer is:

$imagelink = $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile());                        

list($width, $height, $type, $attr) = getimagesize($imagelink);

echo $width; 
share|improve this answer
but this going to return a url as in example.com isn't it? and when you use getimagesize, it will make unnecessary http request to your site which can slow down the process significantly – Dreaded semicolon Jan 16 at 12:50
getimagesize returns an array with 7 elements: php.net/manual/en/function.getimagesize.php. One of the comments says 'getimagesize will download the entire image before it checks for the requested information. This is extremely slow on large images that are accessed remotely.' – Lex Jan 17 at 19:04
I suggest to str_replace the domain part from your $imagelink to get path on your server before doing getimagesize, that way php will read the image locally and can save loading time. it makes big difference especially if you use it on several images in one page. – Dreaded semicolon Jan 19 at 7:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.