问题:
如何将 PNG 图像转换为base-64 编码格式用作 CSS 样式表中的数据 URI?
不幸的是,这个问题无法使用 Unix 命令行解决方案解决。
答案:
要在Python中将PNG图像转换为base-64编码格式,请按照以下步骤操作:
示例代码:
<code class="python">import base64 binary_fc = open(filepath, 'rb').read() # fc aka file_content base64_utf8_str = base64.b64encode(binary_fc).decode('utf-8') ext = filepath.split('.')[-1] dataurl = f'data:image/{ext};base64,{base64_utf8_str}'</code>
注意:
请记住包含必要的前缀 data:image/{ext};base64,以使数据 URI 有效。
以上是如何在 Python 中将 PNG 图像转换为 CSS 数据 URI 的 Base-64 编码?的详细内容。更多信息请关注PHP中文网其他相关文章!