无法添加形状(图像)

时间:2015-05-24 17:50:44

标签: python python-2.7 turtle-graphics

我正在尝试将图像添加到我的代码中,但它不断引发错误

  

register_shape的错误参数

我正在关注http://blog.trinket.io/using-images-in-turtle-programs/

上的教程

我的代码是:

import turtle

screen = turtle.Screen()

# click the image icon in the top right of the code window to see
# which images are available in this trinket
image = "C:\...\rocketship.png"

# add the shape first then set the turtle shape
screen.addshape(image)
turtle.shape(image)

我正在使用python 2.6。 此外,当我使用

的功能
  

screen.bgpic(“C:... \ Backgrounds \ giphy2.gif”)

背景有效。

1 个答案:

答案 0 :(得分:1)

您可以在这里寻找答案: How can i add an image (Python)

  

乌龟模块确实支持图像,但只支持GIF图像,而不支持PNG或任何其他格式。正如addhape的文档所说:

     
    

name是gif文件的名称,形状为None:安装相应的图像形状。