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)的学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

爬虫学习笔记(十七)—— 字符验证码

Python学习笔记(四十二)第三方模块(PIL)图像处理

Python 学习记录Pycharm导入PIL包

PIL和Pillow

python pil 怎么安装

(linux / win)怎样安装Pillow和PIL-Pillow兼容包?