在 Magento 的 media.phtml 文件中,您可以获得第一个产品图像的图像高度:
<?php $imageWidth = $this->helper('catalog/image')->init($_product, 'image')->getOriginalWidth(); ?>
但是,这不适用于进一步的产品图像(在 foreach 循环中):
<?php if (count($this->getGalleryImages()) > 1): ?>
<?php foreach ($this->getGalleryImages() as $_image): ?>
也没有。。
<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile())->getOriginalWidth(); ?>
有人有答案吗?