Advertisement

FreeType C++ loading problem

Started by July 28, 2013 06:09 PM
-1 comments, last by Killermud 11 years, 6 months ago

I am having trouble loading fonts into freetype, everytime I load a font it returns 1 which by the documentation says "cannot open resource". I've tried putting the fonts all over my project but to no success, was wondering if anyone knew how you would go about loading in the fonts.

Here is my code:


if(FT_Init_FreeType(&k_lib))
{
std::cout << "Unable to load freetype library" << std::endl;
}


FT_Face face;
FT_Error error = FT_New_Face(k_lib, "arial.ttf", 0, &face);


if(error)
{
std::cout << "Could not open font" << std::endl;
}

This topic is closed to new replies.

Advertisement