在CSS 資料URI 中對PNG 圖片使用Base64 編碼
為了使用資料URI 將PNG 圖像嵌入到CSS 樣式表中,PNGSS資料必須先編碼為Base64 格式。此技術允許外部圖像檔案直接包含在樣式表中。
Unix 命令列解決方案:
base64 -i /path/to/image.png
此命令將輸出Base64 編碼的PNG data.
<code class="python">import base64 with open("/path/to/image.png", "rb") as f: binary_data = f.read() base64_data = base64.b64encode(binary_data).decode("utf-8") ext = "png" data_uri = f"data:image/{ext};base64,{base64_data}" print(data_uri)</code>
附加說明:
以上是如何將 PNG 圖像編碼為 CSS 資料 URI 的 Base64?的詳細內容。更多資訊請關注PHP中文網其他相關文章!