module-web-images icon indicating copy to clipboard operation
module-web-images copied to clipboard

ValueError: imagecolorsforindex(): Argument #2 ($color) is out of range in /Model/Image/Adapter/Gd2.php:395

Open PowerClover opened this issue 6 months ago • 0 comments

if ($transparentIndex >= 0 && $transparentIndex <= imagecolorstotal($this->_imageHandler)) {

Maybe it should be changed to:

if ($transparentIndex >= 0 && $transparentIndex < imagecolorstotal($this->_imageHandler)) {

PowerClover avatar Aug 26 '24 01:08 PowerClover