定义magento社区中小图像大小的大小

时间:2014-03-01 17:20:24

标签: image magento php image-size

默认情况下,在small_image文件夹中以洋红色方式上传图像后,会创建以100x100这些分辨率复制的图像。 125x125像素; 180X240;为75x100
我需要它也可以在180x180中创建它 如果编辑list.phtml以在正方形中显示图像,则会将矩形图像插入正方形,您可以在左右两侧看到白色边框。
我该怎么做?

1 个答案:

答案 0 :(得分:1)

<img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(180); ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />

尝试list.phtml中的上述代码。

希望这个帮助