摘要: 一、基础学习 在Python中,有一个优秀的图像处理框架,就是PIL库,pip install pillow 示例1 from PIL import Image # 读取当前图片 im = Image.open('test.png') # 用系统自带的图片查看器查看该图片 im.show() # 将 阅读全文
posted @ 2020-10-11 15:46 我用python写Bug 阅读(459) 评论(0) 推荐(0) 编辑