1、PIL:Python Imaging Library,已经是Python平台事实上的图像处理标准库了。
PILLOW工具箱
from PIL import Image
im = Image.open(‘test.jpg’)
w, h = im.size
print(‘Original image size: %sx%s’ % (w, h))
im.thumbnail((w//2, h//2))
print(‘Resize image to: %sx%s’ % (w//2, h//2))
im.save(‘thumbnail.jpg’, ‘jpeg’)
其他功能如切片、旋转、滤镜、输出文字、调色板等一应俱全。
比如,模糊效果也只需几行代码:
from PIL import Image, ImageFilter
im = Image.open(‘test.jpg’)
im2 = im.filter(ImageFilter.BLUR)
im2.save(‘blur.jpg’, ‘jpeg’)
2、加验证码
from PIL import Image, ImageDraw, ImageFont, ImageFilter
import random
def rndChar():
return chr(random.randint(65, 90))
def rndColor():
return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255))
def rndColor2():
return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127))
width = 60 * 4
height = 60
image = Image.new(‘RGB’, (width, height), (255, 255, 255))
font = ImageFont.truetype(‘Arial.ttf’, 36)
draw = ImageDraw.Draw(image)
for x in range(width):
for y in range(height):
draw.point((x, y), fill=rndColor())
for t in range(4):
draw.text((60 * t + 10, 10), rndChar(), font=font, fill=rndColor2())
image = image.filter(ImageFilter.BLUR)
image.save(‘code.jpg’, ‘jpeg’)
我们用随机颜色填充背景,再画上文字,最后对图像进行模糊,得到验证码图片如下:
验证码
如果运行的时候报错:
IOError: cannot open resource
这是因为PIL无法定位到字体文件的位置,可以根据操作系统提供绝对路径,比如:
‘/Library/Fonts/Arial.ttf’
2、图形界面库
Python支持多种图形界面的第三方库,包括:Tk、wxWidgets、Qt、GTK等等。