“So zeichnen Sie Bild in tkinter” Code-Antworten

So zeichnen Sie Bild in tkinter

from tkinter import *
from PIL import ImageTk, Image

root = Tk()

c = Canvas(root, width=500, height=500)
c.pack()

img = ImageTk.PhotoImage(Image.open(r"imagepath\imagename.extension"))
c.create_image(x, y, image=img, anchor=NW)
Blue Badger

Tkinter -Zeichnenkreis

from tkinter import *
root = Tk()
myCanvas = Canvas(root)
myCanvas.pack()

def create_circle(x, y, r, canvasName): #center coordinates, radius
    x0 = x - r
    y0 = y - r
    x1 = x + r
    y1 = y + r
    return canvasName.create_oval(x0, y0, x1, y1)

create_circle(100, 100, 20, myCanvas)
create_circle(50, 25, 10, myCanvas)
root.mainloop()
Attractive Albatross

Ähnliche Antworten wie “So zeichnen Sie Bild in tkinter”

Fragen ähnlich wie “So zeichnen Sie Bild in tkinter”

Weitere verwandte Antworten zu “So zeichnen Sie Bild in tkinter” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen