gpt4 book ai didi

python - 类型错误 : Invalid foreground RGBA argument

转载 作者:太空宇宙 更新时间:2023-11-03 13:55:07 26 4
gpt4 key购买 nike

每次我尝试运行 Pygame 程序时,我都会收到此错误:

TypeError: Invalid foreground RGBA argument

这是我的代码,你知道为什么吗?

text = font.render(b’Score:’ , dude.score, 1, (0, 0, 0))

最佳答案

根据 the docs Font.render 将 rgb 作为他的第三个参数,你将它作为第四个参数传递。这不会引发正确的错误,因为 font.render 需要第四个可选参数背景。

试试 text = font.render('Score:'+str(dude.score), 1, (0, 0, 0))

关于python - 类型错误 : Invalid foreground RGBA argument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57294067/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com