main
黄海 11 months ago
parent 834469c6bb
commit d007dc6919

@ -6,15 +6,15 @@ def WriteWenZi(image_path):
image = Image.open(image_path)
# 创建字体对象
font = ImageFont.truetype('arial.ttf', size=24)
font = ImageFont.truetype('simkai.ttf', size=100)
# 创建绘图对象
draw = ImageDraw.Draw(image)
# 设置文本内容和坐标
text = 'Created by AI'
x = image.width - 200
y = image.height - 50
text = 'AI生成'
x = image.width - 300
y = image.height - 130
# 绘制文本
draw.text((x, y), text, font=font, fill='white')
@ -24,4 +24,4 @@ def WriteWenZi(image_path):
image.close()
WriteWenZi("d:\\9.png")
#WriteWenZi("d:\\9.png")

@ -16,15 +16,15 @@ def WriteWenZi(image_path):
image = Image.open(image_path)
# 创建字体对象
font = ImageFont.truetype('arial.ttf', size=24)
font = ImageFont.truetype('simkai.ttf', size=100)
# 创建绘图对象
draw = ImageDraw.Draw(image)
# 设置文本内容和坐标
text = 'Created by AI'
x = image.width - 200
y = image.height - 50
text = 'AI生成'
x = image.width - 300
y = image.height - 130
# 绘制文本
draw.text((x, y), text, font=font, fill='white')

Loading…
Cancel
Save