讲base64编码的图片,保存为png
from io import BytesIO
from PIL import Image
import base64
def base64_to_image(base64_str):
# 输入为base64格式字符串,输出为PIL格式图片
byte_data = base64.b64decode(base64_str) # base64转二进制
image = Image.open(BytesIO(byte_data)) # 将二进制转为PIL格式图片
image.save('C:\\Users\\mydell\\Desktop\\hesuan\\2.png')
return image
base64_to_image(urlbase64)
标签:PIL,image,base64,保存,格式,import,图片
From: https://www.cnblogs.com/duoba/p/16737229.html