首頁  >  文章  >  web前端  >  如何在 CSS 資料 URI 中嵌入 Base64 編碼的 PNG 圖片?

如何在 CSS 資料 URI 中嵌入 Base64 編碼的 PNG 圖片?

Linda Hamilton
Linda Hamilton原創
2024-11-02 06:02:02703瀏覽

How to Embed Base64-Encoded PNG Images in CSS Data-URIs?

在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>

註解:

    decode('utf-8') 步驟是與某些瀏覽器和編碼器配合使用所必需的。

以上是如何在 CSS 資料 URI 中嵌入 Base64 編碼的 PNG 圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn