Re: Generating images.

2009-07-23 Thread Daniel Roseman
On Jul 23, 10:09 am, Goldy wrote: > Hi, > > I can generate a specific image using the following from the Django > book. > > --- > --- > from django.http import HttpResponse > > def my_image(request): >     image_

Generating images.

2009-07-23 Thread Goldy
Hi, I can generate a specific image using the following from the Django book. -- from django.http import HttpResponse def my_image(request): image_data = open("/path/to/my/image.png", "rb").read() re