我想直接從python腳本服務從GridFS的圖像GridFS的,但只有我看到的是黑屏:蒙戈與Python
#!/usr/bin/env python
from pymongo import Connection
import gridfs
db = Connection().gridfs_example
fs = gridfs.GridFS(db)
f= fs.get_last_version('myimage')
print "Content-type: %s \n\n " % f.content_type
print "Content-Length: %d \n\n" % f.length
print f.read()
如果我寫從f.read()輸出到文件我能看到「有效」的形象 我能夠從本地FS與顯示此圖像:
#!/usr/bin/env python
img = open('image.jpg','rb').read()
print "Content-type: image/jpeg"
print "Content-Length: %d\n" % len(img)
print img
我做錯了什麼?