在Python中,可以使用base64
库将base64
数据转换为图片。以下是将base64
数据写成图片的示例代码:
import base64
import io
from PIL import Image
def write_base64_image(base64_data, file_path):
# 解码base64数据
image_data = base64.b64decode(base64_data)
# 创建Image对象
image = Image.open(io.BytesIO(image_data))
# 保存图片
image.save(file_path)
# 示例调用
base64_data = "base64数据"
file_path = "图片保存路径"
write_base64_image(base64_data, file_path)
在示例代码中,write_base64_image
函数接受两个参数,分别是base64
数据和要保存的文件路径。首先,使用base64.b64decode
函数将base64
数据解码为原始的图片数据。然后,使用io.BytesIO
将图片数据转换为BytesIO
对象,并传递给Image.open
函数创建Image
对象。最后,使用Image.save
方法将图片保存为指定的文件路径。