loki1234 0 Newbie Poster

hi, i got a problem for doing a proxy for binary files with python
please kindly help

#! python
import cgi, os

file_r = open('x.jpg', 'rb')
file_w = open('y.jpg', 'wb')
image_data = file_r.read()
file_r.close()

file_w.write(image_data)
file_w.close()


it works fine for duplicating x.jpg to y.jpg

however, it doesn't work for me to print image into the browser

print 'Content-type: image/jpg \n'
print image_data

:confused::confused: