python生成中文、字母、数字等字符图片

代码功能:

生成指定颜色、大小、字体的中文、字母、数字等字符图片


代码

from PIL import Image, ImageDraw, ImageFont
import random

# 设置背景颜色
bg_colors = ['#747D9E', '#BFB5B4', '#A1C8CD']
# 设置字体颜色
word_colors = ['#9063A4', '#2F1C32', '#0F1418']
# 设置待生成字符
word = "你我他123aBc"

for i in word:
    # (40, 40)为生成的文字图片尺寸
    image = Image.new("RGB", (40, 40), color=random.choice(bg_colors))
    draw_table = ImageDraw.Draw(im=image)
    # xy=(5, 0)文字在图片中的位置,font为生成文字字体及字符大小
    draw_table.text(xy=(5, 0), text=i, fill=random.choice(word_colors),
                    font=ImageFont.truetype('C:/Windows/Fonts/msyhbd.ttc', 30))
    image.save(r'C:\Users\soli\Desktop\1\%s.jpg' % i)

输出结果:

python生成中文、字母、数字等字符图片_第1张图片

你可能感兴趣的:(python)