
PIL
zoot
2017年我开始了csdn,我从互联而来,为互联而去.修行靠个人,记录.
展开
-
PIL
1.PIL:Python Imaging Library,Python平台图像处理标准库。由于PIL仅支持到Python 2.7,在PIL的基础上创建了兼容的版本,叫Pillow,支持最新Python 3.x,又加入了许多新特性 2.安装:pip install pillow 3.应用: 根据图片在磁盘上的大小缩放到1M以内,默认情况下,Image.save保存为jpg格式: #-*- c...原创 2018-12-24 11:08:27 · 644 阅读 · 0 评论 -
PIL文字与图片合成
PIL文字与图片合成 #--coding:utf-8-- from PIL import Image, ImageDraw, ImageFont, ImageFilter import os font = ImageFont.truetype("./经典宋体简.TTF", 61) font.getsize(“AB”) scene_text = Image.new(‘RGBA’, (165, 165...原创 2018-10-08 22:00:14 · 544 阅读 · 0 评论