Have the same problem added the code to line 36 but still no captcha
change this:
//Create the image resource
$image = ImageCreate($width, $height);
imageantialias($image, true);
to
if (function_exists('imageantialias')) {
imageantialias($image, true);
}
thanks in advance