用python将文本转图片字库

来源:互联网 发布:供应商数据库管理表 编辑:程序博客网 时间:2024/06/05 07:15

前一篇博文提到怎么得到汉字字库,这篇文章讲怎么把一个一个的字转成图片,这在机器学习中会有用处。

一句话,用pygame渲染文字到图片上。

下面上代码。

import osimport pygamechinese_dir = 'chinese'if not os.path.exists(chinese_dir):    os.mkdir(chinese_dir)pygame.init()start,end = (0x4E00, 0x9FA5)#汉字编码范围for codepoint in range(int(start),int(end)):    word = unichr(codepoint)    font = pygame.font.Font("msyh.ttc", 22)#当前目录下要有微软雅黑的字体文件msyh.ttc,或者去c:\Windows\Fonts目录下找    rtext = font.render(word, True, (0, 0, 0), (255, 255, 255))    pygame.image.save(rtext, os.path.join(chinese_dir,word+".png"))

下面是效果截图。


3 0
原创粉丝点击