Image 在magento中有多少个选项可以获取产品图像url?

Image 在magento中有多少个选项可以获取产品图像url?,image,magento,url,Image,Magento,Url,这会得到图像url,我相信它会将图像大小调整为90X130,有人知道第三个和第四个参数的含义吗?实际调整大小的代码在哪里?它将在哪里保存调整大小的图像 我也可以从下面的几行中获取图像url,有没有其他方法可以获取拇指大小、大小的图像url Mage::helper('catalog/image')->init($product, 'image')->resize(90, 130, false, true); 实际调整大小的代码位于 $product->getImageUrl(

这会得到图像url,我相信它会将图像大小调整为90X130,有人知道第三个和第四个参数的含义吗?实际调整大小的代码在哪里?它将在哪里保存调整大小的图像

我也可以从下面的几行中获取图像url,有没有其他方法可以获取拇指大小、大小的图像url

Mage::helper('catalog/image')->init($product, 'image')->resize(90, 130, false, true);

实际调整大小的代码位于

$product->getImageUrl();
检查进程的setbase文件功能

其他获取图片url的方式有图片大小的缩略图、小图片、图片

//图像url

{Magento Directory}\app\code\core\Mage\Catalog\Model\Product\Image.php
echo (string)Mage::helper('catalog/image')->init($_product, 'image');
echo (string)Mage::helper('catalog/image')->init($_product, 'small_image');
//小图像url

{Magento Directory}\app\code\core\Mage\Catalog\Model\Product\Image.php
echo (string)Mage::helper('catalog/image')->init($_product, 'image');
echo (string)Mage::helper('catalog/image')->init($_product, 'small_image');
//缩略图像url

{Magento Directory}\app\code\core\Mage\Catalog\Model\Product\Image.php
echo (string)Mage::helper('catalog/image')->init($_product, 'image');
echo (string)Mage::helper('catalog/image')->init($_product, 'small_image');