Wiadomość napisana w dniu 2008-09-17, o godz. 13:31, przez TKa:

> Can anybody help me how to create dynamic images within Django?
> Drawing the image with Python is not a problem but how to link the
> created image to the httpResponse?
>
> Because I need input from the Django models for the image I want to
> call the drawing function from the view. I guess I could save the
> image file to temporary folder and then link the image tag to that
> file in Response but is there any better way to do it? This way I
> would generate a lot of temporary image files and load the file-system
> for nothing plus I would need a method to clean up the files
> afterwards.

You can just return the content (bytes) in HttpResponse with  
appropriate content-type header. First argument to HttpResponse  
constructor is the content.

-- 
We read Knuth so you don't have to. - Tim Peters

Jarek Zgoda, R&D, Redefine
[EMAIL PROTECTED]


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to