[PHP] Generate inline image

2002-05-12 Thread Engineering Software Center
Hi: How do I generate gif inline images using PHP's image functions using GD libs. Everything I have seen so far requires a header before generating the image. But I want the image embedded into a table with other texts. Thank you for the help. Frank -- PHP General Mailing List (http://www

RE: [PHP] Generate inline image

2002-05-12 Thread Engineering Software Center
Thanks for the reply. But how do I do that exactly? ? is this correct? > HTML docs only contain text. If you want images "inline" then you use the > tag. > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Generate inline image

2002-05-28 Thread Engineering Software Center
// I do this anyway, I've found some > browsers complain when you don't > imagepng(); > imagedestroy($im); > ?> > > obviously, the above "code" is for png, but you can use any that your gd > library/broswer supports. > > -Original Messa