i have uploaded images to magento 2.3 and when i look on product page i can see it been resizing to different size with white lines. look at original image that has been uploaded: https://babybeddingdesign.r.worldssl.net/pub/media/catalog/product/d/u/dumbo_bedding_set.jpg
the one seen on my site: https://babybeddingdesign.r.worldssl.net/pub/media/catalog/product/cache/9d08971813a040f8f96067a40f7...
link to the item: https://babybeddingdesign.com/dumbo-crib-bedding-collection-crib-bedding-set
all my products also old ones have been resizing. what is the problem with Magento 2.3?
Hello @decornmore ,
In your view.xml set "width" and "height" as you wish and then "transparency" , "aspect_ratio" and "frame" to "false"
Example:
<?xml version="1.0"?>
<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="category_page_list" type="small_image">
<width>240</width>
<height>300</height>
<transparency>false</transparency>
<aspect_ratio>false</aspect_ratio>
<frame>false</frame>
</image>
</images>
</media>
</view>
--
If my answer is useful, please Accept as Solution & give Kudos
Having the same issue.
Did you find a solution?