在海龟模块中使用PNG

时间:2018-06-14 15:32:30

标签: python python-3.x pillow

我正在寻找一种在海龟窗口中使用PNG作为海龟形状或背景图片的方法。

from PIL import ImageTk, Image
from turtle import *

t = Turtle()
img = ImageTk.PhotoImage(Image.open("Turtle.png"))
register_shape("Pic", Shape("image", img))
t.shape(img)

当我启动此代码时,我总是收到此错误代码:

raise TurtleGraphicsError("There is no shape named %s" % name)
turtle.TurtleGraphicsError: There is no shape named pyimage2

我听说您可以在python代码中使用PNG与PIL.ImageTk.PhotoImage(Image.open()) 有些人想知道如何使这段代码有效吗? 使用Python 3.6.4

1 个答案:

答案 0 :(得分:0)