PNG 画像を表す Base64 形式の文字列を指定すると、一般的なタスクとしてこれを保存する必要があります。画像を PNG ファイルとしてファイル システムに保存します。
Python を使用して、base64 文字列を画像に変換し、ファイル システムに保存する手順は次のとおりです。
<code class="python">import base64 img_data = base64.b64decode(base64_string)</code>
<code class="python">with open("image.png", "wb") as f:</code>
<code class="python"> f.write(img_data)</code>
<code class="python">f.close()</code>
完全な例を次に示します:
<code class="python">import base64 # Replace "base64_string" with the actual base64-encoded string base64_string = "" img_data = base64.b64decode(base64_string) with open("image.png", "wb") as f: f.write(img_data)</code>
これにより、PNG 画像が現在のディレクトリの「image.png」という名前のファイルに保存されます。
以上がBase64 でエンコードされたイメージを Python でファイルシステムに変換して保存する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。