how can i return a image in mod python ?
Arnaud Delobelle
arnodel at googlemail.com
Sun Nov 18 03:27:34 EST 2007
On Nov 18, 6:46 am, Abandoned <best... at gmail.com> wrote:
> Hi..
> I want to show the pictures with mod python directly.
>
> def showimage(req):
> some process...
> open /var/www/a.jpg and print
>
> for example if i open:
> domain.com/a.py/showimage
> It must show me image directly (no redirect or html)
>
> How can i do it ?
> I'm sorry for my bad english.
> Kind Regards....
How about:
def showimage(req):
req.content_type="image/jpeg" # Change to you image type
req.sendfile("/path/to/image.jpg")
return apache.OK
HTH
BTW mod_python has its own list :)
--
Arnaud
More information about the Python-list
mailing list