Mil*_*Way 5 python tkinter tkinter-canvas
我正在为学校开展一个游戏项目,看起来像这样:游戏方面
我创建了这样的彩色多边形:
ship = can.create_polygon(410,650,450,600,490,650 , fill= 'red' , outline='black')
ennemies = can.create_rectangle(x-r, y-r, x+r, y+r, fill='green')
Run Code Online (Sandbox Code Playgroud)
所以现在我想用自己的形象填充它们.那可能吗 ?如何 ?
mar*_*eau 13
from tkinter import *
# create the canvas, size in pixels
canvas = Canvas(width=300, height=200, bg='black')
# pack the canvas into a frame/form
canvas.pack(expand=YES, fill=BOTH)
# load the .gif image file
gif1 = PhotoImage(file='small_globe.gif')
# put gif image on canvas
# pic's upper left corner (NW) on the canvas is at x=50 y=10
canvas.create_image(50, 10, image=gif1, anchor=NW)
# run it ...
mainloop()
Run Code Online (Sandbox Code Playgroud)