<tfoot id='xT9Km'></tfoot>
    <bdo id='xT9Km'></bdo><ul id='xT9Km'></ul>

  • <legend id='xT9Km'><style id='xT9Km'><dir id='xT9Km'><q id='xT9Km'></q></dir></style></legend>

    1. <i id='xT9Km'><tr id='xT9Km'><dt id='xT9Km'><q id='xT9Km'><span id='xT9Km'><b id='xT9Km'><form id='xT9Km'><ins id='xT9Km'></ins><ul id='xT9Km'></ul><sub id='xT9Km'></sub></form><legend id='xT9Km'></legend><bdo id='xT9Km'><pre id='xT9Km'><center id='xT9Km'></center></pre></bdo></b><th id='xT9Km'></th></span></q></dt></tr></i><div id='xT9Km'><tfoot id='xT9Km'></tfoot><dl id='xT9Km'><fieldset id='xT9Km'></fieldset></dl></div>

      <small id='xT9Km'></small><noframes id='xT9Km'>

        如何在 python 中解析 data-uri?

        时间:2023-08-30
        <tfoot id='yTTkC'></tfoot><legend id='yTTkC'><style id='yTTkC'><dir id='yTTkC'><q id='yTTkC'></q></dir></style></legend>
          <bdo id='yTTkC'></bdo><ul id='yTTkC'></ul>

            <small id='yTTkC'></small><noframes id='yTTkC'>

                  <tbody id='yTTkC'></tbody>

                <i id='yTTkC'><tr id='yTTkC'><dt id='yTTkC'><q id='yTTkC'><span id='yTTkC'><b id='yTTkC'><form id='yTTkC'><ins id='yTTkC'></ins><ul id='yTTkC'></ul><sub id='yTTkC'></sub></form><legend id='yTTkC'></legend><bdo id='yTTkC'><pre id='yTTkC'><center id='yTTkC'></center></pre></bdo></b><th id='yTTkC'></th></span></q></dt></tr></i><div id='yTTkC'><tfoot id='yTTkC'></tfoot><dl id='yTTkC'><fieldset id='yTTkC'></fieldset></dl></div>

                  本文介绍了如何在 python 中解析 data-uri?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  HTML 图像元素具有此 简化格式:

                  HTML image elements have this simplified format:

                  <img src='something'>
                  

                  那个东西可以是data-uri,例如:

                  That something can be data-uri, for example:

                  data:image/png;base64,iVBORw0KGg...
                  

                  有没有一种标准的方法可以用 python 解析这个,以便我将 content_type 和 base64 数据分开,或者我应该为此创建自己的解析器?

                  Is there a standard way of parsing this with python, so that I get content_type and base64 data separated, or should I create my own parser for this?

                  推荐答案

                  用逗号分割数据 URI,得到不带 header 的 base64 编码数据.调用 base64.b64decode 将其解码为字节.最后,将字节写入文件.

                  Split the data URI on the comma to get the base64 encoded data without the header. Call base64.b64decode to decode that to bytes. Last, write the bytes to a file.

                  from base64 import b64decode
                  
                  data_uri = "data:image/png;base64,iVBORw0KGg..."
                  
                  # Python 2 and <Python 3.4
                  header, encoded = data_uri.split(",", 1)
                  data = b64decode(encoded)
                  
                  # Python 3.4+
                  # from urllib import request
                  # with request.urlopen(data_uri) as response:
                  #     data = response.read()
                  
                  with open("image.png", "wb") as f:
                      f.write(data)
                  

                  这篇关于如何在 python 中解析 data-uri?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 base64 编码图像文件 下一篇:使用 OpenCv python 库从内存中读取 base 64 编码图像

                  相关文章

                  <small id='cnZjh'></small><noframes id='cnZjh'>

                  1. <i id='cnZjh'><tr id='cnZjh'><dt id='cnZjh'><q id='cnZjh'><span id='cnZjh'><b id='cnZjh'><form id='cnZjh'><ins id='cnZjh'></ins><ul id='cnZjh'></ul><sub id='cnZjh'></sub></form><legend id='cnZjh'></legend><bdo id='cnZjh'><pre id='cnZjh'><center id='cnZjh'></center></pre></bdo></b><th id='cnZjh'></th></span></q></dt></tr></i><div id='cnZjh'><tfoot id='cnZjh'></tfoot><dl id='cnZjh'><fieldset id='cnZjh'></fieldset></dl></div>

                    1. <legend id='cnZjh'><style id='cnZjh'><dir id='cnZjh'><q id='cnZjh'></q></dir></style></legend>

                        <bdo id='cnZjh'></bdo><ul id='cnZjh'></ul>
                      <tfoot id='cnZjh'></tfoot>