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
handrightbeta-8.7.0.tar.gz
(14.4 kB
view details)
Built Distribution
File details
Details for the file handrightbeta-8.7.0.tar.gz
.
File metadata
- Download URL: handrightbeta-8.7.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 119a78ca5aaead6e114c1d8b3f862aaa919dd5bcf54e4db48b7160c88511b2f7 |
|
MD5 | 44dae2c9b50b90b2de1532067e75660a |
|
BLAKE2b-256 | dc1568aa7e13e891a79d99a7bedcac8f3b8a0f663cb869a70d66492378f52cba |
File details
Details for the file handrightbeta-8.7.0-py3-none-any.whl
.
File metadata
- Download URL: handrightbeta-8.7.0-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57ac7fea3dfde537d6e4d304699ea4a5f752f5ad36d7739c973454524791b04a |
|
MD5 | ce309b76cddb2246d0a2b9f096ce476b |
|
BLAKE2b-256 | 561f36977733aefa9d7e8ea6f055977cba500f3b737c7e4260436ee443cc69e5 |