这是我写的一个程序,应该在窗口中显示一些文字......
import pyglet
from pyglet import window
from pyglet.text.layout import TextLayout
class Window(pyglet.window.Window):
def __init__(self):
super(Window, self).__init__(width = 800, height = 600,
caption = "Prototype")
self.disclaimer = pyglet.text.Label("Hello World",
font_name = 'Times New Roman',
font_size=36,
color = (255, 255, 255, 255),
x = TextLayout.width / 2,
y = TextLayout.height / 2,
anchor_x='center', anchor_y='center')
def on_draw(self):
self.clear()
self.disclaimer.draw()
if __name__ == '__main__':
window = Window()
pyglet.app.run()
...但每次我尝试运行它都会出现此错误
line 16
x = TextLayout.width / 2,
TypeError: unsupported operand type(s) for /: 'property' and 'int'
我很确定这意味着我试图划分一个字符串,但在Pyglet文档中它表示宽度和高度是整数。我不知道我做错了什么。
答案 0 :(得分:3)
TextLayout
是一个类 - 所以TextLayout.width
是一个原始属性,对你来说没用;您希望从width
类的实例获取TextLayout
,而不是来自类本身!此外,该类专门用于布置文本文档,所以我真的不明白为什么你想要得到它(因为你没有文档对象)。
我怀疑你真正想要的是:
x = self.width / 2,
y = self.height / 2,
并删除TextLayout
。
答案 1 :(得分:0)
如果您使用的是Python 3.x版,则除法运算符/
会生成一个浮点类型编号。使用//
来截断(传统样式)整数除法。