浏览文章
文章信息
【后端】 Magento2 批量调整图片大小,解决图片空白、图片排版问题
15177
跟着我以下步骤:
1、通过主题view.xml解决
注意:你必须先建立主题!
你可以继承或者新建一个主题,然后修改etc/view.xml文件中各个场景的图片尺寸,修改合适的图片尺寸。
以下是部分view.xml的代码
<view xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Config/etc/view.xsd"> <media> <images module="Magento_Catalog"> <image id="bundled_product_customization_page" type="thumbnail"> <width>140</width> <height>140</height> </image> <image id="cart_cross_sell_products" type="small_image"> <width>240</width> <height>160</height> </image> <image id="cart_page_product_thumbnail" type="small_image"> <width>110</width> <height>73</height> </image> <image id="category_page_grid" type="small_image"> <width>240</width> <height>160</height> </image> <image id="category_page_list" type="small_image"> <width>240</width> <height>160</height>2、刷新主题中etc/view.xml指定的图片规格
注意:你必须先建立主题!
php magento catalog:images:resize
php magento cache:clean
如果报错某个图片不存在的,请修改数据库补上图片!
接下来去前端查看成功吧!
喜欢的注册发帖!