在python中使用外部图像

时间:2016-12-21 06:23:54

标签: python python-3.x tkinter turtle-graphics

我正在使用海龟图形库制作简单的应用程序。

我试图做.bgpic,但似乎并没有按照我的意愿行走。

我把图像放在python源文件所在的同一目录下,我这样做了:

screen = turtle.Screen()
screen.bgpic("picture.png")

但它没有改变任何东西。当我运行它时,它只有白色背景。

我该怎么办?

1 个答案:

答案 0 :(得分:1)

图片必须是gif文件,doc

  

turtle.bgpic (picname =无)

     

参数:picname - 字符串,gif文件的名称或“nopic”,或无

     

设置背景图片或返回名称   当前的backgroundimage。如果picname是文件名,请设置   相应的图像作为背景。如果picname是“nopic”,请删除   背景图片,如果存在。如果picname为None,则返回文件名   当前的backgroundimage。

<强> picture.gif

enter image description here

import turtle

screen = turtle.Screen()
screen.bgpic("picture.gif")
turtle.done()

enter image description here