產品圖片的高度內Magento的media.phtml文件可以得到圖像高度與第一產品形象:獲取內的Magento
<?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(); ?>
任何人有答案嗎?
感謝您的幫助@Jernej,我結束了使用PHP和getimagesize函數(見我的回答如下)。我不確定是否有任何理由不使用任何一個。 – Lex