I'm trying to load an image file from my local disk and output it over http when the script is accessed on my webserver via cgi.
For example I want http://example.com/getimage.py?imageid=foo to return the corresponding image. Just opening the file and printing imgfile.read() after the appropriate content headers, however, causes the image to be scrambled. Clearly the output isn't right, but I have no idea why.
What would be the best way to do this, using the built-in modules of 2.6?
Edit:
The code essentially boils down to:
imgFile=open(fileName,"rb")
print "Content-type: image/jpeg"
print
print imgFile.read()
imgFile.close()
It outputs an image, just one that seems to be random data.