Image Magento中带有动态参考的硬编码产品图像

Image Magento中带有动态参考的硬编码产品图像,image,magento,dynamic,reference,src,Image,Magento,Dynamic,Reference,Src,在Magento中,我有一个页面,我正在对某些产品的图像进行硬编码。我不想简单地使用产品的图像URL来实现这一点,而是希望使用产品关联图像的动态引用,这样,如果我更改了产品的图像,此页面上的引用就不会中断。我需要缩略图大小的图像和大图像。有人知道如何执行此操作吗?假设您已经以$\u product $thumbImageUrl = Mage::helper('catalog/image')->init($_product, 'small_image')->resize($width

在Magento中,我有一个页面,我正在对某些产品的图像进行硬编码。我不想简单地使用产品的图像URL来实现这一点,而是希望使用产品关联图像的动态引用,这样,如果我更改了产品的图像,此页面上的引用就不会中断。我需要缩略图大小的图像和大图像。有人知道如何执行此操作吗?

假设您已经以
$\u product

$thumbImageUrl =  Mage::helper('catalog/image')->init($_product, 'small_image')->resize($width, $height);
$imageUrl =  Mage::helper('catalog/image')->init($_product, 'image')->resize($width, $height);
// if you don't want to resize at all
$imageUrl = $_product->getMediaConfig()->getMediaUrl($_product->getData('image'));