以编程方式获取Magento中产品图像的宽度和高度?

时间:2012-02-15 00:50:15

标签: image magento

内部Magento模板代码我想获得原始产品图片的宽度和高度(创建产品时由管理员上传),以便进行相应的调整。

我该怎么做?到目前为止,我有:

$this->helper('catalog/image')->init($_product, 'image')

这是否有任何方法可以让我检索产品图像的原始尺寸?如:

$this->helper('catalog/image')->init($_product, 'image')->getWidth()

还是什么?

谢谢!

1 个答案:

答案 0 :(得分:8)

刚在文档中找到它:http://docs.magentocommerce.com/Mage_Catalog/Mage_Catalog_Helper_Image.html

似乎是:

$this->helper('catalog/image')->init($_product, 'image')->getOriginalHeight()
$this->helper('catalog/image')->init($_product, 'image')->getOriginalWidth()