不了解此AttributeError的原因:“ _ Screen”对象没有属性“ setimage”

时间:2019-03-14 23:05:45

标签: python image turtle-graphics appjar

我的代码是:

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'

任何建议都是有帮助的。

1 个答案:

答案 0 :(得分:0)

要执行所需的操作,需要一个相当复杂的解决方法(实际上有两个),因为它需要使用tkinter模块来完成其中的一部分(因为turtle-graphics模块在内部使用了此方法)来制作其图形),并且turtle中没有名为setscreen()的方法,就像您通过AttributeError发现的那样。

更复杂的是,tkinter模块不支持.jpg。格式化图像,因此还需要另一种解决方法来克服该限制,即还需要使用PIL(Python影像库)将图像转换为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.