PIL(Pillow)的学习笔记
Posted songyuc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PIL(Pillow)的学习笔记相关的知识,希望对你有一定的参考价值。
1 将图像的字节数组转换为Image对象
image_bytes # 图像字节码
import io
from PIL import Image
img = Image.open(io.BytesIO(image_bytes)) # io.BytesIO():转换为字节流
以上是关于PIL(Pillow)的学习笔记的主要内容,如果未能解决你的问题,请参考以下文章