首页 > 编程语言 > 详细

python 将windows字体中的汉字生成图片的方法

时间:2019-02-09 17:58:04      阅读:309      评论:0      收藏:0      [点我收藏+]
#encoding: utf-8
import os
import pygame

chinese_dir = ‘黑体常规‘
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 = chr(codepoint)
font = pygame.font.Font("simhei.ttf", 64)
# 当前目录下要有微软雅黑的字体文件msyh.ttc,或者去c:\Windows\Fonts目录下找
# 64是生成汉字的字体大小
rtext = font.render(word, True, (0, 0, 0), (255, 255, 255))
pygame.image.save(rtext, os.path.join(chinese_dir, word + ".png"))

python 将windows字体中的汉字生成图片的方法

原文:https://www.cnblogs.com/MarsMercury/p/10357730.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!