A lightweight Python library for simulating Chinese handwriting
Project description
Handright
A lightweight Python library for simulating Chinese handwriting
Tutorial | Examples | 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
from PIL import Image, ImageFont
from handright import Template, handwrite
text = "我能吞下玻璃而不伤身体。"
template = Template(
background=Image.new(mode="1", size=(1024, 2048), color=1),
font_size=100,
font=ImageFont.truetype("path/to/my/font.ttf"),
)
for image in handwrite(text, template):
image.show()
更多信息请参阅Tutorial。
Gallery
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-5.0.0.tar.gz
(10.3 kB
view hashes)
Built Distribution
handright-5.0.0-py3-none-any.whl
(11.0 kB
view hashes)
Close
Hashes for handright-5.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0792de0e9ca3b5d21d9fb0dd04049b8156be511646741a979788b83bf48d2a44 |
|
MD5 | bfcaf4375b1df13a9ef44a105381f297 |
|
BLAKE2b-256 | 37ad25eb8793209b0c31c8656096d87fab72a8a1fecc52e6e5afb832b5e7280a |