Python PIL ImageFont.truetype()
PIL是Python图像库,它为Python解释器提供了图像编辑功能。ImageFont模块定义了一个同名的类。这个类的实例存储位图字体,并与PIL.ImageDraw.Draw.text()方法一起使用。
PIL使用它自己的字体文件格式来存储位图字体。你可以使用:commandpilfont
工具将BDF和PCF字体描述符(X窗口字体格式)转换成这种格式。
PIL.ImageFont.truetype()加载一个TrueType或OpenType字体文件,并创建一个字体对象。这个函数从给定的文件中加载一个字体对象,并为一个给定尺寸的字体创建一个字体对象。
这个功能需要_imagingft服务。
语法: PIL.ImageFont.truetype(font=None, size=10, index=0, encoding=”)
参数 :
font – 一个truetype字体文件。在Windows下,如果在这个文件名中找不到该文件,加载器也会在Windows字体/目录中寻找。
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()
输出: