Magento展示产品的动画gif图像

RoG*_*hAt 7 caching product animated-gif magento

我想展示产品的动画gif图像.
上传gif图像是可行的,但在前端没有看到相同的内容.
我看到由于缓存在magento动画gif图像中的功能没有看到.
我该如何实现它?
请查看链接以供参考.
提前致谢.

Nik*_*K_R 10

你可以实现它.
虽然您的缓存功能不适用于动画gif图像.
从中复制文件

路径: app/code/core/Mage/Catalog/Model/Product/Image.php to

路径: app/code/local/Mage/Catalog/Model/Product/Image.php (必要时创建文件夹)
找到行public function getUrl()并将函数替换为:

public function getUrl()
    {
        $baseDir = Mage::getBaseDir('media');
        $file = ('gif' == strtolower(pathinfo($this->_baseFile, PATHINFO_EXTENSION))) ? $this->_baseFile : $this->_newFile;
        $path = str_replace($baseDir . DS, "", $file);
        return Mage::getBaseUrl('media') . str_replace(DS, '/', $path);
    }
Run Code Online (Sandbox Code Playgroud)

希望这会帮助你.

  • 这有帮助,但是我对rezised图像有一些问题. (2认同)