0 Pluspunkte 0 Minuspunkte
Was ist die einfachste Möglichkeit mit Python Linien auf ein Bild zu zeichnen? Also so das ich genau angeben kann von Position x bis Position y eine Linie. Dann von Position y nach Position z. Und so weiter.
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

PIL ist eine einfache und robuste Python Bibliothek zum zeichnen.

from PIL import Image, ImageDraw

image = Image.open("test.jpg")

draw = ImageDraw.Draw(image)

lines = [
    [(50, 50), (50, 100)],
    [(50, 100), (100, 100)],
    [(100, 100), (100, 50)],
    [(100, 50), (50, 50)]
]

for line in lines:
    start_point = line[0]
    end_point = line[1]
    draw.line([start_point, end_point], fill=(255, 0, 0), width=3)

image.show()

#image.save("result.jpg")
von  
Zeichnen mit Python und Tkinter