如何在 magento 中调整除产品图像之外的图像大小

发布于 2024-11-03 03:21:50 字数 118 浏览 1 评论 0原文

伙计们,我怎样才能像magento中的产品图像一样动态调整其他图像的大小?

我创建了一个接收用户个人资料图片和信息的模块。我想像 magento 产品图像一样调整它们的大小。

感谢您的支持。

Guys How can I Resize other images on fly like product images in magento??

I have created a module that receives user's profile picture & I want to resize them like magento product images.

Thanks for your support.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不弃不离 2024-11-10 03:21:50

当您调整产品图像的大小时,它会在后台使用 Varien_Image,然后在输出 URL 的同时将图像保存到文件中。由于您不会使用产品图像,因此您需要自己调用 Varien_Image->save($destination)

如果您需要查看其工作原理,代码位于 /lib/Varien/Image.php/lib/Varien/Image/Adapter/Gd2.php 中。

When you resize a product image it is using a Varien_Image behind the scenes, then it saves the image to file at the same time the URL is outputted. Since you will not be using a product image you'll need to call Varien_Image->save($destination) yourself.

If you need to look at how it works the code is in /lib/Varien/Image.php and /lib/Varien/Image/Adapter/Gd2.php.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文