Interlaced images can't be resized by php gd2 library by

Опубликовано: 01 Июнь 2026
на канале: Skynix Agency
38
8

To deal with the issue when you can not upload some images in Magento follow instructions:

1. Install imagemagick if you do not have it yet
brew install imagemagick
2. open the terminal and go to the folder with images
3. Run command
find . -iname \*png -execdir convert {} -interlace none {} \;