如何将PIL生成的图像发送到浏览器?
我在我的应用程序中使用烧瓶。我想将图像(由 PIL 动态生成)发送到客户端而不保存在磁盘上。
知道如何做到这一点吗?
I'm using flask for my application. I'd like to send an image (dynamically generated by PIL) to client without saving on disk.
Any idea how to do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是一个没有任何临时文件等的版本(请参阅此处):
要在您的代码简单地做
Here's a version without any temp files and the like (see here):
To use in your code simply do
先生确实做得非常出色。我必须使用 BytesIO() 而不是 StringIO()。
Mr. Mr. did an excellent job indeed. I had to use BytesIO() instead of StringIO().
首先,您可以将图像保存到 tempfile 并删除本地文件(如果您有一个):
其次,将临时文件设置为响应(按照 这个 stackoverflow 问题):
First, you can save the image to a tempfile and remove the local file (if you have one):
Second, set the temp file to the response (as per this stackoverflow question):
事实证明,flask 提供了一个解决方案(rtm 给我自己!):
It turns out that flask provides a solution (rtm to myself!):
我也在同样的情况下挣扎。最后,我找到了使用 WSGI 应用程序的解决方案,该应用程序是“make_response”作为其参数的可接受对象。
请将“打开图像”操作替换为适当的 PIL 操作。
I was also struggling in the same situation. Finally, I have found its solution using a WSGI application, which is an acceptable object for "make_response" as its argument.
Please replace "opening image" operations with appropriate PIL operations.