在 CSS Data-URI 中嵌入 Base64 编码的 PNG 图像
使用 data-uri 将 PNG 图像直接嵌入到 CSS 文件中,它需要进行 base-64 编码。操作方法如下:
Python 解决方案:
<code class="python">import base64 # Read the PNG file as binary filepath = "path/to/image.png" binary_fc = open(filepath, 'rb').read() # Base-64 encode the binary data base64_utf8_str = base64.b64encode(binary_fc).decode('utf-8') # Get the file extension ext = filepath.split('.')[-1] # Create the data-uri dataurl = f'data:image/{ext};base64,{base64_utf8_str}'</code>
注释:
以上是如何在 CSS 数据 URI 中嵌入 Base64 编码的 PNG 图像?的详细内容。更多信息请关注PHP中文网其他相关文章!