您的当前位置:首页正文

[python] 将 pylab 图像保存到内存中并可以被PIL打开

2024-11-08 来源:个人技术集锦

使用 BytesIO

show me the code:

import io
import matplotlib.pyplot as plt
from PIL import Image

plt.figure()
plt.plot([0, 1])
buf = io.BytesIO()
plt.savefig(buf, format='png')
buf.seek(0) //此处划重点
im = Image.open(buf)
im.show()
buf.close()
显示全文