Путь шрифта FreeType для Windows

Я борюсь с Windows и FreeType2. Я следую учебному пособию, и в качестве примера кода показано следующее:

  FT_Library  library;   /* handle to library     */
FT_Face     face;      /* handle to face object */error = FT_Init_FreeType( &library );
if ( error ) { ... }

error = FT_New_Face(library, "/usr/share/fonts/truetype/arial.ttf", 0, &face ); // <-- this does not exist...
if ( error == FT_Err_Unknown_File_Format )
{
... the font file could be opened and read, but it appears
... that its font format is unsupported
}
else if ( error )
{
... another error code means that the font file could not
... be opened or read, or simply that it is broken...
}

это /usr/share/fonts/truetype/arial.ttf просто не существует, как я могу заставить шрифт Arial работать с этим.

1

Решение

Это зависит от системы к системе. Проверьте FOLDERID_Fonts.

2

Другие решения


По вопросам рекламы [email protected]