Hi,
I am looking to create a transparent text gif that allows me to set a colour
for the matte. I have it working as a PNG but this is no good in IE.
Does anyone have an exampe of this?
This is my code so far.
<?php
header("Content-type: image/gif");
$im = imagecreate (800, 30);
$black = ImageColorAllocate ($im, 255, 255, 255);
$blue = ImageColorAllocate ($im, 75, 104, 177);
ImageTTFText ($im, 20, 0, 10, 20, $blue, "Font - TrueType - Square 721
BT.ttf", "HELLO");
ImageGif ($im);
ImageDestroy ($im);
?>
R.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php