作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为学校设计一个游戏项目,看起来像这样:游戏中方面
我已经创建了这些彩色多边形,如下所示:
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')
最佳答案
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()
关于python - 如何在 Canvas 项目中插入图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43009527/
我是一名优秀的程序员,十分优秀!