At 9:17 PM +0100 6/13/07, Ross wrote:
Never really used the GD much before very straightforward but how do I
output the image on a page. This is  fine on a php page on its own but what
about one where the headers are already sent?

Ross:

That's not a problem. See this:

http://xn--nvg.com/rotated_text <-- if your browser chokes, get a better browser

The image code (text.php) is:

<?php
Header ("Content-type: image/gif");
$im = imagecreate (150, 150);
$background = ImageColorAllocate ($im, 238, 238, 238);
$text_color = ImageColorAllocate ($im, 00, 51, 102);    //#036 00 33 66 HEX
ImageTTFText ($im, 20, 45, 30, 130, $text_color, "arial.ttf",
                          "Hello World...");
ImageGif ($im);
ImageDestroy ($im);
?>

and it's called from html like this:

<img src="text.php">

If you put this into your site, you'll need arial.tff to make it work, but you can find it in lot's of places.

Cheers,

tedd


--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to