A lightweight Python library for simulating Chinese handwriting
Project description
Handright
A lightweight Python library for simulating Chinese handwriting
Tutorial | Release Notes | Contributing
Vision
Reveal the nature of Chinese handwriting and use it to implement beautiful, simple and easy-to-use interfaces.
Algorithm
首先,在水平位置、竖直位置和字体大小三个自由度上,对每个字的整体做随机扰动。随后,在水平位置、竖直位置和旋转角度三个自由度上,对每个字的每个笔画做随机扰动。
Installation
pip install handright
Quick Start
# 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()
更多信息请参阅Tutorial。
Join Us
扫码或点击链接加入Handright社区,关于Handright的使用问题请优先在社区中咨询:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
handright-8.2.0.tar.gz
(12.5 kB
view hashes)
Built Distribution
handright-8.2.0-py3-none-any.whl
(11.9 kB
view hashes)
Close
Hashes for handright-8.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aad7f7eb2539750ad7270cd160920258d252f0ba8216747eb48dbac95fb4fbf2 |
|
MD5 | 63f90bbd553f5774a4c23d44783aaa28 |
|
BLAKE2b-256 | 40001c5e1751c2b986b3408ef6df21c7c412d14de84cf5a7dc029774afae8a60 |