如何将mongodb的Gridfs与PIL(Python图像库)一起使用
我使用 mongodb 并将文件保存到 gridfs
现在我想从 gridfs 编辑图像...
我使用此代码
def thumbnail(file_obj):
import StringIO
from PIL import Image
im = StringIO.StringIO()
im.write(file_obj.raw_file)
im_ful = Image.open(im)
return im_ful.info
但 pil 说“无法识别图像文件”
这也是图像;) 如何修复它
i use mongodb and save file to gridfs
now i want edit images from gridfs ...
i use this code
def thumbnail(file_obj):
import StringIO
from PIL import Image
im = StringIO.StringIO()
im.write(file_obj.raw_file)
im_ful = Image.open(im)
return im_ful.info
but pil said "cannot identify image file"
thats image also ;)
how can fix it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调用
Image.open(im)
之前,您需要调用im.seek(0)
。否则,PIL 尝试从文件末尾读取,但得不到数据,并且失败。You need an
im.seek(0)
before theImage.open(im)
call. Otherwise PIL tries to read from the end of the file, gets no data, and fails.