I'm on a roll, folks! This makes the fourth posted question today!
I am getting the following error:
Fatal error: imagecreatetruecolor(): requires GD 2.0 or later in
When trying to do this:
// USE imagecreatetruecolor() ONLY IF YOU ARE RUNNING GD 2.0+ AND PHP 4.2.0+
if ($this->isSuccessful && $image && !$newImage && function_exists('imagecreatetruecolor') && !$hasMogrified)
$newImage = imagecreatetruecolor($config['width'], $config['height']);
I tested with function_exists() and the function 'imagecreatetruecolor' exists but cannot be used because I am using GD 1.6.2 with PHP 4.3.6 and I'm confused.
How then can I determine what GD Library I'm using for a remote, portable application? I can't use phpinfo() for this, I can't use gd_info() (function does not exist), I don't honestly know what to do about this!
Thanx
Phil