2016-07-30 84 views
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

另外我知道字體文件沒有損壞,因爲我看到一個問題可以。

回答

0

確保這不是一個損壞的字體或Windows兼容性問題的第一步是將woff轉換爲ttf並嘗試獲取pygame來加載該文件。我去了這個網站:https://everythingfonts.com/woff-to-ttf,我用我自己的woff字體測試了它,它的工作原理與ttf相同。我在Linux上,我的字體/代碼爲我工作。

我會粘貼我的字體加載代碼,以便您可以測試以防萬一。

請讓我知道,如果事情仍然無法正常工作。如果是這樣,發佈您的Windows + Python版本,以便我可以重現。

import pygame, sys, os 
from pygame.locals import * 

pygame.init() 
screen = pygame.display.set_mode((400, 300)) 

# font-related code: 

fpsClock = pygame.time.Clock() 
# https://www.behance.net/gallery/31268855/Determination-Better-Undertale-Font 
font = pygame.font.Font(os.path.join("res", "fonts", 'DeterminationMonoWeb.ttf'), 16) 

screen.blit(font.render(text, 0, (255, 240, 230)), (10, 10)) 
pygame.display.flip() 
# Main game loop 
while True: 
    if pygame.event.wait().type in (QUIT, KEYDOWN, MOUSEBUTTONDOWN): 
     break 

    pygame.display.update() 
    fpsClock.tick(60)