在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中文網其他相關文章!