base64 の文字列を画像に変換し、ファイルシステムに保存します
PNG 画像を表すbase64 形式の文字列がある場合は、次のようになります。 Python で画像に変換してファイルシステムに保存する方法:
<code class="python">import base64 import io # Decode the base64 string into binary data binary_data = base64.b64decode(base64_string) # Create a file-like object from the binary data image_file = io.BytesIO(binary_data) # Save the image to a file with open('image_name.png', 'wb') as f: f.write(image_file.read())</code>
以上がBase64 でエンコードされた PNG 文字列を画像に変換し、Python でファイルシステムに保存する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。