使用Base64 編碼在CSS 樣式表中嵌入PNG 圖片
要使用資料URI 在CSS 樣式表中包含PNG 圖像,必須將它們轉換為Base64 編碼。以下是實現此目的的方法:
在macOS 和Linux 上,您可以使用以下命令列方法:
base64 filepath > filepath.b64
或者,您可以使用Python 來實現更通用的方法:
<code class="python">import base64 binary_fc = open(filepath, 'rb').read() base64_utf8_str = base64.b64encode(binary_fc).decode('utf-8') ext = filepath.split('.')[-1] dataurl = f'data:image/{ext};base64,{base64_utf8_str}'</code>
在此Python 解決方案中,decode('utf-8') 確保與現代瀏覽器的兼容性,前綴data:image/{ext};base64 對於識別圖像格式和編碼至關重要。
以上是如何使用 Base64 編碼在 CSS 樣式表中嵌入 PNG 圖片?的詳細內容。更多資訊請關注PHP中文網其他相關文章!