Magento图像质量在firefox / IE中没有改善,但在Chrome中有效

时间:2018-06-28 08:19:47

标签: magento magento-1.8 magento-1.4

那里有很多帖子都提到使用setQuality()

的magento图像质量。

我尝试了以下设置缩略图质量的方法,但是几乎看不到任何区别。

下面是我用来将Quality设置为95的代码。也尝试使用100。

<img src="<?php echo $this->helper('catalog/image')
    ->init($_product, 'thumbnail')
    ->keepAspectRatio(true)
    ->keepFrame(true)
    ->keepTransparency(true)
    ->backgroundColor(array(255,255,255))
    ->resize(375)
    ->setQuality(95) ?>" width="369" height="330" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" />

为什么resize()setQuality在缩略图视图中不受影响?

0 个答案:

没有答案