how can i return a image in mod python ?
Abandoned
besturk at gmail.com
Mon Nov 19 05:27:06 EST 2007
On Nov 18, 10:27 am, Arnaud Delobelle <arno... at googlemail.com> wrote:
> 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 meimagedirectly (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 youimagetype
> req.sendfile("/path/to/image.jpg")
> returnapache.OK
>
> HTH
>
> BTW mod_python has its own list :)
>
> --
> Arnaud
Thank you but i have a another problem.
def showimage(req):
from PIL import Image
im=Image.open("c:\image-2.jpg")
im.thumbnail((800,600), Image.ANTIALIAS)
req.sendfile(im)
give me some error.
How can i return this image witdhout save ?
More information about the Python-list
mailing list