当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL ImageFont.truetype()用法及代码示例


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。