Nicht so viel
--Überprüfen Sie den Speicherort der Schriftartdatei
$ fc-match -f "%{file}\n" FreeMono
/System/Library/Fonts/Hiragino Marugo ProN W4.ttc
from PIL import Image, ImageDraw, ImageFont
font = ImageFont.truetype("/System/Library/Fonts/Hiragino Marugo ProN W4.ttc", size=60)
def make_image(n):
im = Image.new("RGB",(300,100),"blue")
draw = ImageDraw.Draw(im)#Erstellen Sie eine ImageDraw-Instanz auf im
draw.text((10,20), f"Kostenloses Beschreibungsfeld{n}", font=font)
im.save(f"./freetext{n}.jpg ")
for i in range(0,50):
make_image(i)
from IPython.display import Image, display_png
display_png(Image('./name1.jpg'))
Recommended Posts