4 lines
151 B
Python
4 lines
151 B
Python
|
#!/usr/bin/python
|
||
|
image=open("/var/www/html/img/topbkg.gif",'rb').read()
|
||
|
print "Content-Type: image/png\nContent-Length: %d\n" % len(image)
|
||
|
print image
|