Re: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread Floyd Resler
Ken, That's exactly what I want and it works beautifully! I wish I had asked this question a long time ago since, in the past, I have been creating the files and wind up with a bunch of image files hanging around. When building this new site I thought there must be a better way! Thank

RE: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread David Murphy
sheridan.co.uk] Sent: Thursday, March 11, 2010 9:26 AM To: Floyd Resler Cc: PHP Subject: Re: [PHP] Drawing Images Without Writing To a File On Thu, 2010-03-11 at 10:27 -0500, Floyd Resler wrote: > I want to draw tabs in a tab bar without having to actually write the images to a file. Is it possible t

Re: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread Rene Veerman
sure.. have a seperate php script output the image you want (after doing a header() call to set the mime type to an image; google "php header image"), and call that on the relevant page via by sending the proper headers back for an entire page, but I just want to do > basically the same thing fo

Re: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread Ken Sande
Floyd Resler wrote: I want to draw tabs in a tab bar without having to actually write the images to a file. Is it possible to generate the image and send the data back and make the browser think it's loading an image file? I know this can be done by sending the proper headers back for an ent

Re: [PHP] Drawing Images Without Writing To a File

2010-03-11 Thread Ashley Sheridan
On Thu, 2010-03-11 at 10:27 -0500, Floyd Resler wrote: > I want to draw tabs in a tab bar without having to actually write the images > to a file. Is it possible to generate the image and send the data back and > make the browser think it's loading an image file? I know this can be done > by