使用 Python 在运行时生成图像
长话短说...我有一个从数据库检索的 Base64 编码字符串。我需要从编码数据输出图像,但不保存文件。是否可以通过python脚本输出图像? (通过更改标题或类似的东西)?
Long story short...I have a base64 encoded string that I retrieve from a database. I need to output an image from the encoded data but without saving the file. Is it possible to output the image through a python script? (by changing the header or something like that)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Tkinter PhotoImage 类。它可以获取 Base64 编码的图像并显示它们。
Have a look at the Tkinter PhotoImage Class. It can take base64 encoded images and display them.
使用正确的 HTTP 标头(内容类型)在不同的 URL 上提供图像数据,并在应显示它的 HTML 代码中使用该 URL。详细信息取决于您使用的框架(Django?CGI?自己的 HTTP 服务器?)。
应该是这样的(想象的框架):
Serve the image data at a different URL with proper HTTP headers (Content-Type) and use that URL in the HTML code that should display it. Details depend on the framework you are using (Django? CGI? own HTTP server?).
It should be something like this (imaginary framework):