一个轻量级的Python库,用于模拟中文手写

揭示中文手写的本质,并用它来实现美观、简单且易用的接口。
首先,在水平位置、竖直位置和字体大小三个自由度上,对每个字的整体做随机扰动。随后,在水平位置、竖直位置和旋转角度三个自由度上,对每个字的每个笔画做随机扰动。
pip install handright
# coding: utf-8 from PIL import Image, ImageFont from handright import Template, handwrite text = "我能吞下玻璃而不伤身体。" template = Template( background=Image.new(mode="1", size=(1024, 2048), color=1), font=ImageFont.truetype("path/to/my/font.ttf", size=100), ) images = handwrite(text, template) for im in images: assert isinstance(im, Image.Image) im.show()
更多信息请参阅教程。