Quote:
Originally posted by Glock
Error: Failed to create a destination image.
|
Try turning GD 2.0 support off if you have it on
PHP Code:
if ($imageverification_gdsupport) {
//ImageCreateTrueColor requires GD 2.0 or higher
if (!$img = @ImageCreateTrueColor($create_width,$create_height))
DisplayError("Failed to create a destination image.");
} else {
if (!$img = @ImageCreate($create_width,$create_height))
DisplayError("Failed to create a destination image.");
}
Thats where the file generates that error.