1
我想將.woff格式的字體文件加載到我的pygame中。我已經看到其他職位談論這個問題,但他們的答案無助於回答我的問題。我嘗試使用這樣的:Pygame從外部字體文件加載字體
fontObj = py.font.Font('brandon_blk-webfont.woff', 16)
textSurfaceObj = fontObj.render(self.fact, True, black, None)
textRectObj = textSurfaceObj.get_rect()
textRectObj.center = (x * 1.5, y * 1.5)
gameDisplay.blit(textSurfaceObj, textRectObj)
這是我的錯誤:
Traceback (most recent call last):
File "C:\Users\Sruthi\Desktop\Python\Pygame\Memorization Game\main.py", line 111, in <module>
gameLoop()
File "C:\Users\Sruthi\Desktop\Python\Pygame\Memorization Game\main.py", line 108, in gameLoop
create_button(mouse, 50, 50)
File "C:\Users\Sruthi\Desktop\Python\Pygame\Memorization Game\main.py", line 84, in create_button
fontObj = py.font.Font('Memorization Game/brandon_blk-webfont.woff', 16)
OSError: unable to read font file 'Memorization Game/brandon_blk-webfont.woff'
我已經把這個字體文件在我目前的python文件的目錄,你可以在這個圖片中看到:
Shows that the font files are in the same directory
另外我知道字體文件沒有損壞,因爲我看到一個問題可以。