使用 Python 在运行时生成图像

发布于 2024-11-19 09:06:45 字数 94 浏览 0 评论 0原文

长话短说...我有一个从数据库检索的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

放肆 2024-11-26 09:06:45
import urllib

uri = 'data:image/jpg;base64,' + urllib.quote(raw_data)
    return(or print depending what you're using - anyway, render to html) '<img src="'+uri+'"/>'

not entirely cross-browser, IE not working, raw data needs to be base64 encoded
import urllib

uri = 'data:image/jpg;base64,' + urllib.quote(raw_data)
    return(or print depending what you're using - anyway, render to html) '<img src="'+uri+'"/>'

not entirely cross-browser, IE not working, raw data needs to be base64 encoded
时光是把杀猪刀 2024-11-26 09:06:45

查看 Tkinter PhotoImage 类。它可以获取 Base64 编码的图像并显示它们。

Have a look at the Tkinter PhotoImage Class. It can take base64 encoded images and display them.

山有枢 2024-11-26 09:06:45

使用正确的 HTTP 标头(内容类型)在不同的 URL 上提供图像数据,并在应显示它的 HTML 代码中使用该 URL。详细信息取决于您使用的框架(Django?CGI?自己的 HTTP 服务器?)。

应该是这样的(想象的框架):

def return_record_from_db(key):
    "called for the '/item/${key}' URI"
    item = database.get(key)
    return Response("<h1>{0} <p>The image:<img src='/item/{1}/image'>"
                                                  .format(item.name, key))

def return_image_for_db_record(key):
    "called for the '/item/${key}/image' URI"
    item = database.get(key)
    return Response(binascii.a2b_base64(item.image), extra_headers="Content-Type: image/jpg")

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):

def return_record_from_db(key):
    "called for the '/item/${key}' URI"
    item = database.get(key)
    return Response("<h1>{0} <p>The image:<img src='/item/{1}/image'>"
                                                  .format(item.name, key))

def return_image_for_db_record(key):
    "called for the '/item/${key}/image' URI"
    item = database.get(key)
    return Response(binascii.a2b_base64(item.image), extra_headers="Content-Type: image/jpg")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文