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