gpt4 book ai didi

python - 为什么在 PIL(low) 中读取图像会破坏 Flask 图像终点?

转载 作者:太空狗 更新时间:2023-10-30 02:10:34 24 4
gpt4 key购买 nike

我正在使用 Python Flask framework建立一个网站。由于我将上传的图像存储在 MongoDB 中,因此我构建了一个简单的端点来按 id 提供图像:

@app.route('/doc/<docId>')
def getDoc(docId):
userDoc = UserDocument.objects(id=docId).first()
if not userDoc:
return abort(404)

return Response(userDoc.file_.read(), mimetype=userDoc.file_.content_type)

这非常有效。但由于图像通常非常大,我现在还希望能够提供原始图像的缩略图。所以使用 Pillow我想调整图像大小,将它们存储/缓存在 /tmp 中,并在需要时提供它们。所以我从这个开始:

@app.route('/doc/<docId>')
def getDoc(docId):
userDoc = UserDocument.objects(id=docId).first()
if not userDoc:
return abort(404)

desiredWidthStr = request.args.get('width')
desiredHeightStr = request.args.get('height')
if desiredWidthStr or desiredHeightStr:
print 'THUMBNAIL'
# Load the image in Pillow
im = Image.open(userDoc.file_) # <=== THE PROBLEM!!!
# TODO: resize and save the image in /tmp

print 'NORMAL'
return Response(userDoc.file_.read(), mimetype=userDoc.file_.content_type)

当我现在注释掉有问题的行并打开首页(其中加载了几张图片)时,所有图片都加载正常并且我看到了这一点(如预期的那样):

THUMBNAIL
NORMAL
THUMBNAIL
NORMAL
THUMBNAIL
NORMAL
212.xx.xx.xx - - [2015-03-19 16:57:02] "GET /doc/54e74956724b5907786e9918?width=100 HTTP/1.1" 200 139588 0.744827
212.xx.xx.xx - - [2015-03-19 16:57:03] "GET /doc/54e7495c724b5907786e991b?width=100 HTTP/1.1" 200 189494 1.179268
212.xx.xx.xx - - [2015-03-19 16:57:03] "GET /doc/5500c5d1724b595cf71b4d49?width=100 HTTP/1.1" 200 264593 1.416928

但是当我运行我在上面粘贴的代码时(问题行没有被注释)图像没有加载,我在终端看到了这个:

THUMBNAIL
THUMBNAIL
THUMBNAIL
NORMAL
NORMAL
NORMAL
212.xx.xx.xx - - [2015-03-19 16:58:11] "GET /doc/54e74956724b5907786e9918?width=100 HTTP/1.1" 200 138965 0.657734
212.xx.xx.xx - - [2015-03-19 16:58:11] "GET /doc/54e7495c724b5907786e991b?width=100 HTTP/1.1" 200 188871 0.753112
212.xx.xx.xx - - [2015-03-19 16:58:11] "GET /doc/5500c5d1724b595cf71b4d49?width=100 HTTP/1.1" 200 257495 1.024860

除了这些,我在终端中没有看到任何错误。当我尝试在浏览器中加载直接 URL 时,它说 The image cannot be displayed because it contains errors.。我现在想知道两件事:

  1. 尽管所有请求似乎都成功 (200),但我在浏览器中看不到图像。为什么?
  2. 即使将图像加载到 Pillow 中需要一段时间(我认为不需要),我仍然希望图像最终加载。

有人知道为什么当我将图像加载到 Pillow 时没有提供这些图像吗?欢迎所有提示!

最佳答案

您对 Pillow 没有任何问题。您的问题是您正在提供一个空响应。如果您提供的是缩略图,请让 Pillow 阅读文件:

if desiredWidthStr or desiredHeightStr:    
print 'THUMBNAIL'
im = Image.open(userDoc.file_) # reads from the file object

然后您尝试从那个同一个文件对象提供服务:

if desiredWidthStr or desiredHeightStr:    
print 'THUMBNAIL'
# Load the image in Pillow
im = Image.open(userDoc.file_) # <=== THE PROBLEM!!!
# TODO: resize and save the image in /tmp

return Response(userDoc.file_.read(), mimetype=userDoc.file_.content_type)

此处的 userDoc.file_.read() 最多将返回部分图像,因为 Image.open() 已经移动了文件指针。这取决于图像类型实际读取了多少以及当时图像指针所在的位置。

添加一个 file.seek() 调用,您将看到您的图像重新出现:

if desiredWidthStr or desiredHeightStr:    
print 'THUMBNAIL'
# Load the image in Pillow
im = Image.open(userDoc.file_)

print 'NORMAL'
userDoc.file_.seek(0) # ensure we are reading from the start
return Response(userDoc.file_.read(), mimetype=userDoc.file_.content_type)

关于python - 为什么在 PIL(low) 中读取图像会破坏 Flask 图像终点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29149151/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com