base64 형식의 문자열이 PNG 이미지. 이 이미지를 PNG 파일로 파일 시스템에 어떻게 저장합니까?
<code class="python">import base64 # Decode the base64-encoded string and convert it into binary data. binary_data = base64.b64decode(string_data) # Save the binary data to a file. with open('image.png', 'wb') as f: f.write(binary_data)</code>
이 예에서 string_data는 base64로 인코딩된 문자열이고 image.png는 원하는 문자열입니다. 저장된 이미지의 파일명입니다.
위 내용은 Base64로 인코딩된 이미지를 디코딩하고 디스크에 저장하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!