Re: images on the web

2008-06-20 Thread chris
On Jun 20, 1:52 am, Michael Ströder <[EMAIL PROTECTED]> wrote: > Matt Nordhoff wrote: > > Matt Nordhoff wrote: > >> You could use data: URIs [1]. > > >> For example, a 43-byte single pixel GIF becomes this URI: > > >> > > >> They don't have universal browser support, but that might not be a > >> p

Re: images on the web

2008-06-20 Thread Michael Ströder
chris wrote: I'm creating a data plot and need to display the image to a web page. What's the best way of doing this without having to save the image to disk? I already have a mod_python script that outputs the data in tabular format, but I haven't been able to find anything on adding a generated

Re: images on the web

2008-06-20 Thread Michael Ströder
Matt Nordhoff wrote: Matt Nordhoff wrote: You could use data: URIs [1]. For example, a 43-byte single pixel GIF becomes this URI: They don't have universal browser support, but that might not be a problem in this case. As for generating them with Python, I'm not sure... I just used Hixie's

Re: images on the web

2008-06-19 Thread Matt Nordhoff
Matt Nordhoff wrote: > chris wrote: >> I'm creating a data plot and need to display the image to a web page. >> What's the best way of doing this without having to save the image to >> disk? I already have a mod_python script that outputs the data in >> tabular format, but I haven't been able to fi

Re: images on the web

2008-06-19 Thread Matt Nordhoff
chris wrote: > I'm creating a data plot and need to display the image to a web page. > What's the best way of doing this without having to save the image to > disk? I already have a mod_python script that outputs the data in > tabular format, but I haven't been able to find anything on adding a > g

images on the web

2008-06-19 Thread chris
I'm creating a data plot and need to display the image to a web page. What's the best way of doing this without having to save the image to disk? I already have a mod_python script that outputs the data in tabular format, but I haven't been able to find anything on adding a generated image. -- http