File size: 1,144 Bytes
5e1df1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from PIL import Image, ImageFont

from handright import Template, handwrite

def handwritings(text):
    template = Template(
        background = Image.new(mode="1", size=(2048, 2048), color=1),
        font=ImageFont.truetype("font.ttf", size=100),
        line_spacing=150,
        fill=0,  # 字体“颜色”
        left_margin=100,
        top_margin=100,
        right_margin=100,
        bottom_margin=100,
        word_spacing=15,
        line_spacing_sigma=6,  # 行间距随机扰动
        font_size_sigma=20,  # 字体大小随机扰动
        word_spacing_sigma=3,  # 字间距随机扰动
        end_chars=",。",  # 防止特定字符因排版算法的自动换行而出现在行首
        perturb_x_sigma=4,  # 笔画横向偏移随机扰动
        perturb_y_sigma=4,  # 笔画纵向偏移随机扰动
        perturb_theta_sigma=0.05,  # 笔画旋转偏移随机扰动
    )
    images = handwrite(text, template)
    
    for i, im in enumerate(images):
        assert isinstance(im, Image.Image)
        # im.show()
    return im

import gradio as gr
demo = gr.Interface(handwritings, "text", "image")
demo.launch()