Hello,
I'd like to create an image from a string. The string will be deliverd from a mysql blob object.
So I tried the 'imageCreateFromString' function.
Code looks like this:
echo "<IMG SRC=\"". imageCreateFromString($data) ."\" HEIGHT=\"200\" WIDTH=\"200\"> ";
but the only thing I get is the error message 'Fatal error</b>: ImageCreateFromString: Only available with GD 1.5+'
I am using PHP 4.04 with included gd.
I did not find a good description about this gd function, the only one I found is on PHP.net. It says only 'ImageCreateFromString -- Create a new image from the image stream in the string', but not more. Is there a proper description about this function on the web?
Has anybody a clue about the error message?
Thanx in advance,
ronamado