1. Python PIL 库的下载和安装
Python PIL 的官方下载地址 http://effbot.org/downloads#pil ,只更新到Python2.7
我下载的是Python3.4,所以没去下载官方的库文件(不知道是不是真的不能用,没试)
http://www.lfd.uci.edu/~gohlke/pythonlibs/
上面这个网址提供了大多数的python第三方库,找到pillow,
a replacement for PIL下载 Pillow-3.0.0-cp34-none-win32.whl ,cp34对应我python的版本3.4,win32对应我python的版本是32位的
然后用pip 在windows命令行下安装
pip install Pillow-3.0.0-cp34-none-win32.whl
2. python PIL 库的用法可以在官方文档中学习
http://effbot.org/imagingbook/
3. 程序示例
目标:将你的 QQ 头像(或者微博头像)右上角加上红色的数字
from PIL import Image, ImageDraw, ImageFont
def add_num(img):
draw = ImageDraw.Draw(img)
# use a truetype font
myfont = ImageFont.truetype('C:/windows/fonts/Arial.ttf', size=40)
fillcolor = "#ff0000" #R,G,B的值
width,height = img.size
draw.text((width-50, 0), '99', font=myfont, fill=fillcolor)
img.save('result.jpg','jpeg')
return 0
if __name__ == '__main__':
image = Image.open(r'F:\pic.jpg')
add_num(image)