我有以下情况。
它可以拍摄近10兆字节,并且执行必要的例程可以达到4兆字节。
我可以得到如下图像:
$imgsProdMagento = $product->getMediaGalleryImages();
foreach ($imgsProdMagento as $imgProdMagento) {
var_dump($imgProdMagento);
}
它返回给我10兆字节的图片,看着前端可以看到图像的局部缓存要小得多,正如我要做的那样?
我尝试过如下操作,但它只返回一个已标记的图片,但不会返回给我的网址。
Mage::helper('catalog/image')->init($product, 'image');
我需要从缓存中获取产品的所有图像的URL。
答案 0 :(得分:2)
试试这个Get full cached path of product relative images Magento
Mage::helper('catalog/image')->init($product->getProduct(), 'image', $_image->getFile())->resize(2000);