web-dev-qa-db-ja.com

キャンバスアイテムに画像を挿入する方法は?

私は学校のゲームプロジェクトに取り組んでいます。これは次のようなものです:ゲーム内の側面

 In-game aspect

このような色のポリゴンを作成しました:

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')

だから今、私は自分の画像でthemを埋めたいです。それは可能ですか?そしてどうやって ?

5
Milky_Way
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()
13
martineau