不了解此属性错误的原因:"_Screen"对象没有属性"setimage"



我拥有的代码是:

import time
import turtle
from turtle import *
from random import randint
#GUI options
screen = turtle.Screen()
screen.setup(1000,1000)
screen.setimage("eightLane.jpg")
title("RACING TURTLES")

出现的错误消息是:

Traceback (most recent call last):   File
"/Users/bradley/Desktop/SDD/coding term 1 year 11/8 lane
experementaiton.py", line 14, in <module>
    screen.setimage("eightLane.jpg") AttributeError: '_Screen' object has no attribute 'setimage'

任何建议都是有帮助的。

要完成您想要的操作,需要一个相当涉及的解决方法(实际上是两个),因为它需要使用tkinter模块来完成其中的一部分(因为这是turtle- graphics Module使用内部使用的方法要执行图形),并且turtle在其中没有一种称为setscreen()的方法,如您通过AttributeError发现的那样。

更复杂的事情进一步,tkinter模块不支持.jpg。格式图像,因此需要另一个解决方法来克服该限制,这需要使用PIL(Python Imaging库)将图像转换为格式tkinter确实支持。

from PIL import Image, ImageTk
from turtle import *
import turtle
# GUI options
screen = turtle.Screen()
screen.setup(1000, 1000)
pil_img = Image.open("eightLane.jpg")  # Use PIL to open .jpg image.
tk_img = ImageTk.PhotoImage(pil_img)  # Convert it into something tkinter can use.
canvas = turtle.getcanvas()  # Get the tkinter Canvas of this TurtleScreen.
# Create a Canvas image object holding the tkinter image.
img_obj_id = canvas.create_image(0, 0, image=tk_img, anchor='center')
title("RACING TURTLES")
input('press Enter')  # Pause before continuing.

最新更新