前言
最近的一个项目中需要在图片上添加文字,使用了OpenCV,结果发现利用opencv给图像添加文字有局限。可利用的字体类型比较少,需要安装Freetype扩展,比较复杂。而且不能用putText函数输出中文,否则就会出现乱码的情况。只好选择使用Python PIL函数库对照片进行处理,利用Python自带的PIL库扩展图片大小给图片加上文字描述,大多都是库函数调用,只是给定图片宽度后计算文字所需行数的代码需要写。 代码比较丑,but it works.
代码示例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/usr/bin/env python3
from PIL import Image, ImageDraw, ImageFont
import math
text = "尽管曾作为皇家猎场而存在,意大利大帕拉迪索国家公园一直保留着其野性的一面。画面里的赤狐静静地匍匐在秋草丛中等待时机,它的身躯与自然融为一体。所有狐狸都是机会主义者,生活在大帕拉迪索的赤狐也不例外;如果有可能,无论是鱼类还是野兔,即便是人类野餐留下的残羹冷炙,它们也不介意吃个一干二净。"
def make_text_image(width, white, text, save_path, mode = "rgb" ):
"""
生成一个文字图形, white=1,表示白底黑字,否则为黑底白字
"""
# 字体可能要改
# linux查看支持的汉字字体 # fc-list :lang=zh
ft = ImageFont.truetype( "DroidSansFallbackFull.ttf" , 15 )
w, h = ft.getsize(text)
# 计算要几行
lines = math.ceil(w / width) + 1
height = h * lines
# 一个汉字的宽度
one_zh_width, h = ft.getsize( "中" )
if len (mode) = = 1 : # L, 1
background = ( 255 )
color = ( 0 )
if len (mode) = = 3 : # RGB
background = ( 255 , 255 , 255 )
color = ( 0 , 0 , 0 )
if len (mode) = = 4 : # RGBA, CMYK
background = ( 255 , 255 , 255 , 255 )
color = ( 0 , 0 , 0 , 0 )
newImage = Image.new(mode, (width, height), background if white else color)
draw = ImageDraw.Draw(newImage)
# 分割行
text = text + " " #处理最后少一个字问题
text_list = []
start = 0
end = len (text) - 1
while start < end:
for n in range (end):
try_text = text[start:start + n]
w,h = ft.getsize(try_text)
if w + 2 * one_zh_width > width:
break
text_list.append(try_text[ 0 : - 1 ])
start = start + n - 1 ;
# print(text_list)
i = 0
for t in text_list:
draw.text((one_zh_width, i * h), t, color if white else background, font = ft)
i = i + 1
newImage.save(save_path);
def resize_canvas(org_image = "aa.jpg" , add_image = "222.jpg" , new_image_path = "save2.jpg" ):
org_im = Image. open (org_image)
org_width, org_height = org_im.size
mode = org_im.mode
make_text_image(org_width, 0 , text, "222.jpg" , mode)
add_im = Image. open (add_image)
add_width, add_height = add_im.size
mode = org_im.mode
newImage = Image.new(mode, (org_width, org_height + add_height))
newImage.paste(org_im, ( 0 , 0 , org_width, org_height))
newImage.paste(add_im, ( 0 , org_height, add_width, add_height + org_height))
newImage.save(new_image_path)
resize_canvas()
|
原图
改之后的图
总结
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
参考资料:
- PIL库帮助文档http://pillow.readthedocs.io/en/latest/reference/ImageFont.html?highlight=getsize
- 加水印的学习 https://wanglu.info/1273.html
- 扩展图片大小的学习 https://ask.helplib.com/1334235
- 计算字符串像素的学习 http://blog.csdn.net/icamera0/article/details/50762050
原文链接:http://blog.csdn.net/u013401853/article/details/76690373