我正在尝试编写一个使用 freetype 的简单程序。
代码 :
#include <ft2build.h>
#include FT_FREETYPE_H
int main()
{
FT_Library library;
int error = FI_Init_FreeType(&library);
}
我正在编译为 g++ try1_c++demo.cpp -I/usr/include/freetype2
它给出以下错误:
try1_c++demo.cpp: In function ‘int main()’:
try1_c++demo.cpp:9: error: ‘FI_Init_FreeType’ was not declared in this scope
我该如何解决这个错误?