字体可以正常安装,所以我觉得应该不是字体问题 把自己的字体换成系统中有的 arial.ttf 就没问题了,既不是字体的问题,也不是程序的问题,请问哪里出错了呢
import os , pyautogui , os.path , time
from PIL import ImageFont ,Image, ImageDraw
scriptpath = os.path.dirname(__file__)
userfilename = os.path.join(scriptpath, 'selections.PNG')
font1 = os.path.join(scriptpath, '1.ttf')
im = Image.open(userfilename , mode="r")
font = ImageFont.truetype(font1, 16)
draw = ImageDraw.Draw(im)
draw.text((0 , 0) , "1233" , font = font , fill=(0,0,0) )
im.save(userfilename+'.JPG', "PNG")
file1 = os.path.join(scriptpath, 'selections.PNG.JPG')