i have this:
<?php
$im = imagecreate(24, 6);
$white = imagecolorallocate($im, 255,255,255);
$black = imagecolorallocate($im, 0,0,0);
imagestring($im, 5, 0, 0, "Hello world!", $black);
imagejpeg($im);
?>
i have the latest version of php stable, and the gd2 extension enabled along with the proper extension dir, however the when i try running the above, the page just loads and loads and loads.
when i comment out the 'imagejpeg' line, page finishes loading, but of course i wont be able to see anything. so i am wondering if there is a problem with that. any ideas?
thanks