1. 程式人生 > >python引入PIL做驗證碼,發現字型不支援的解決辦法

python引入PIL做驗證碼,發現字型不支援的解決辦法

from PIL import Image, ImageDraw, ImageFont, ImageFilter
import random

# 隨機字母:
def rndChar():
    return chr(random.randint(65, 90))

# 隨機顏色1:
def rndColor():
    return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255))

# 隨機顏色2:
def rndColor2():
    return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127))

# 240 x 60:
width = 60 * 4
height = 60
image = Image.new('RGB', (width, height), (255, 255, 255))
# 建立Font物件:
font = ImageFont.truetype('Arial.ttf', 36)
# 建立Draw物件:
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無法定位到字型檔案的位置,可以進行以下操作:

1、進入python的安裝目錄,一般預設是C:\python27

2、搜尋.ttf

3、即可查到自己的電腦有哪些中字型格式,然後隨機選一種並把絕對路徑替換到程式碼中的Arial.ttf即可

例如:我查詢到的絕對路徑是:

C:/Python27/Lib/site-packages/matplotlib/mpl-data/fonts/ttf/cmb10.ttf