FI_Init_FreeType变量声明错误

时间:2013-09-02 09:42:56

标签: c++

我正在尝试编写一个使用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

我该如何解决这个错误?

0 个答案:

没有答案