Добрый день!
Подскажите пожалуйста, после добавления товара, в карточке товара, вверху отображаются ошибки:
2014-06-12 23:36:38 - PHP Warning: imagecreatetruecolor(): Invalid image dimensions in /home/httpd/vhosts/сайт/httpdocs/system/library/image.php on line 96
2014-06-12 23:36:38 - PHP Warning: imagecolorallocate() expects parameter 1 to be resource, boolean given in /home/httpd/vhosts/сайт/httpdocs/system/library/image.php on line 104
2014-06-12 23:36:38 - PHP Warning: imagefilledrectangle() expects parameter 1 to be resource, boolean given in /home/httpd/vhosts/сайт/httpdocs/system/library/image.php on line 107
2014-06-12 23:36:38 - PHP Warning: imagecopyresampled() expects parameter 1 to be resource, boolean given in /home/httpd/vhosts/сайт/httpdocs/system/library/image.php on line 109
В строке 96 содержится:
$this->image = imagecreatetruecolor($width, $height);
В строке 104 содержится:
$background = imagecolorallocate($this->image, 255, 255, 255);
В строке 107 содержится:
imagefilledrectangle($this->image, 0, 0, $width, $height, $background);
В строке 109 содержится:
imagecopyresampled($this->image, $image_old, $xpos, $ypos, 0, 0, $new_width, $new_height, $this->info['width'], $this->info['height']);
Какие могут быть причины появления ошибок?