Python之文字转图片

mac2022-06-30  106

Pygame模块一览表:

引入pygame模块 ,若本机没有请自行pip install pygame

#载入必要的模块 import pygame #pygame初始化 pygame.init() # 待转换文字 text = u"文字转图片" #设置字体和字号 font = pygame.font.SysFont('Microsoft YaHei', 64) #渲染图片,设置背景颜色和字体样式,前面的颜色是字体颜色 ftext = font.render(text, True, (65, 83, 130),(255, 255, 255)) #保存图片 pygame.image.save(ftext, "image.jpg")#图片保存地址

运行结果

转载于:https://www.cnblogs.com/bilaisheng/p/10211012.html

相关资源:python实现图片转文字图案
最新回复(0)