入门Python实现七夕表白神器

Posted swijtu-lawrenced-1425123490

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了入门Python实现七夕表白神器相关的知识,希望对你有一定的参考价值。

 1 from PIL import Image, ImageDraw, ImageFont
 2 
 3 font_size = 7 #This var can change the Word‘s blank size.
 4 text = "我的小猪!" #filled with those word
 5 img_path = "F://SD.jpg"#image path
 6 
 7 img_raw = Image.open(img_path)#open the image
 8 img_array = img_raw.load()
 9 
10 img_new = Image.new("RGB", img_raw.size, (0, 0, 0))
11 draw = ImageDraw.Draw(img_new)
12 font = ImageFont.truetype(C:/Windows/fonts/Dengl.ttf, font_size)#Create a empty image
13 
14 def character_generator(text):#filled the font
15     while True:
16         for i in range(len(text)):
17             yield text[i]
18 
19 ch_gen = character_generator(text)
20 
21 for y in range(0, img_raw.size[1], font_size):
22     for x in range(0, img_raw.size[0], font_size):
23         draw.text((x, y), next(ch_gen), font=font, fill=img_array[x, y], direction=None)
24 
25 img_new.convert(RGB).save("F://SunJJ.jpg")

效果展示:

技术图片

 

以上是关于入门Python实现七夕表白神器的主要内容,如果未能解决你的问题,请参考以下文章

❤️七夕佳节,用Python制作表白神器,程序员也应该拥有爱情!附源码,建议收藏❤️

python教程入门学习七夕情人节表白|Python程序员的花式表白

Python编写表白神器!向你的女神告白吧!!

七夕打算如何向女神表白?这5个表白神器让你俘获女神的心!

七夕打算如何向女神表白?这5个表白神器让你俘获女神的心!

七夕打算如何向女神表白?这5个表白神器让你俘获女神的心!