2021
01-13
01-13
python pillow库的基础使用教程
知识点图像模块(Image.Image)Image模块的功能Image模块的方法ImageChops模块ImageColor模块基础使用图像模块Image.Image加载图像对象,旋转90度并显示fromPILimportImage#显示图像im=Image.open('background.jpg')im.show()#转换图像90度im.rotate(90).show()创建缩略图128x128fromPILimportImageimportglob,ossize=128,128forinfileinglob.glob('D:\code\gitee\pydata\python3-example\pillow_demo\*...
继续阅读 >