PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。 ImageFont模塊定義一個具有相同名稱的類。此類的實例存儲位圖字體,並與PIL.ImageDraw.Draw.text()方法一起使用。
PIL使用其自己的字體文件格式來存儲位圖字體。您可以使用:command`pilfont`實用程序將BDF和PCF字體描述符(X窗口字體格式)轉換為這種格式。
PIL.ImageFont.truetype()
加載TrueType或OpenType字體文件,並創建一個字體對象。此函數從給定文件中加載字體對象,並為給定大小的字體創建一個字體對象。
此函數需要 the _imagingft
服務。
用法: PIL.ImageFont.truetype(font=None, size=10, index=0, encoding=”)
參數:
font-TrueType字體文件。在Windows下,如果在該文件名中找不到該文件,則加載程序還會在Windows fonts /目錄中查找。
size-請求的大小(以磅為單位)。
index-要加載的字體(默認為第一個可用的字體)。
encoding-使用哪種字體編碼(默認為Unicode)。
返回:字體對象。
異常:IOError-如果無法讀取文件。
使用的圖片:
# Importing Image and ImageFont, ImageDraw module from PIL package
from PIL import Image, ImageFont, ImageDraw
# creating a image object
image = Image.open(r'C:\Users\System-Pc\Desktop\rose.jpeg')
draw = ImageDraw.Draw(image)
font = ImageFont.truetype(r'C:\Users\System-Pc\Desktop\arial.ttf', 70)
text = 'DO NOT DRINK AND \nDRIVE'
draw.text((10, 20), text, font = font)
image.show()
輸出:
另一個例子:拍攝另一張圖像。
圖片已使用
Importing Image and ImageFont, ImageDraw module from PIL package
from PIL import Image, ImageFont, ImageDraw
# creating a image object
image = Image.open(r'C:\Users\System-Pc\Desktop\flower.jpg')
draw = ImageDraw.Draw(image)
font = ImageFont.truetype(r'C:\Users\System-Pc\Desktop\arial.ttf', 70)
text = 'stay healthy'
draw.text((50, 100), text, font = font)
image.show()
輸出:
相關用法
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | ImageFont.truetype()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。