* Simon Hook wrote: > I have a 4 line python script which should display a png that is in the > same directory as the script. The script is: > > #!d:/apps/Python23/python.exe > > fp = open('tmp.png','rb') > print "Content-type: image/png\n" > print fp.read() > fp.close() > > Any ideas would be much appreciated. (1) Missing an empty line between the headers and the body (2) Never use print with binary data (3) Use binary mode on stdout on Win32 systems when working with binary data #!d:/apps/Python23/python.exe import os, sys, msvcrt fp = open('tmp.png', 'rb') print "Content-type: image/png\n\n" msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) sys.stdout.write(fp.read()) fp.close() (untested) nd -- "Solides und umfangreiches Buch" -- aus einer Rezension <http://pub.perlig.de/books.html#apache2> --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx