我曾嘗試使用下面的代碼來繪製,在Tkinter的創建一個線上的點嘗試: import tkinter as tk
from time import sleep
def myfunction(event):
x, y = event.x, event.y
x1 = (x+1)
y1 = (y+1)
canvas.create_line(x, y, x1,
我正在嘗試使用畫布小部件在python 3.5中使用tkinter創建一個簡單的遊戲。對於這個遊戲,我需要能夠使用透明(PNG)圖像。這裏是我的代碼: from PIL import ImageTk
from tkinter import Tk, Canvas
root = Tk()
im = ImageTk.PhotoImage(file="test.png")
canvas = Ca
我試圖創建一個程序,在循環中顯示一系列圖像,但create_image()函數只繪製我試圖繪製的最後一個圖像。 for i in range(len(imgList)):
filename = PhotoImage(file = str(imgList[i]).lower() + ".png")
C.create_image(45 * (i + 1), 5, anchor=NE