Base64 でエンコードされた PNG 画像を CSS データ URI に埋め込む
データ 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>
メモ:
以上がBase64 でエンコードされた PNG 画像を CSS データ URI に埋め込む方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。