python
%pylab inline
from PIL import Image,ImageDraw,ImageFont
#Erstellen Sie ein Bild
img = Image.new('RGB', (800,200),(255,255,255)) # 800*200 weißer Hintergrund
#Bild bearbeiten
draw = ImageDraw.Draw(img)
draw.line((0, 0, 799, 199),fill='green') #Grüne gerade Linie
pl_img = np.array(img) ; plt.imshow( pl_img ) #Anzeige
FONTPATH = '/usr/share/fonts/truetype/fonts-japanese-gothic.ttf'
font = ImageFont.truetype(FONTPATH, 24, encoding='utf-8')
draw.text((40,80),'Test Test Test Test',font=font, fill='black')
pl_img = np.array(img) ; plt.imshow( pl_img ) #Anzeige
#Bild speichern
img.save('test_draw.png')
Ich kann es selbst sagen, aber es ist nicht sehr interessant.
↓ Ich habe versucht, das Notizbuch hier anzuheben nbviewer.ipython.org/github/suto3/git-public/blob/master/python/notebook/Pillow-workflow01.ipynb
↓ Klicken Sie hier für die Arbeitsumgebung Aufbau der Kissenumgebung - Virtuelle Umgebung von virtualenv, interaktive Umgebung von iPython - Qiita
Verwenden Sie Pillow auf iPython (Teil 2) --Qiita
Verwenden Sie Pillow auf iPython (Teil 3) --Qiita
Recommended Posts