18 lines
290 B
C++
18 lines
290 B
C++
|
#include "TrueTypeFont.h"
|
||
|
#include "FontReader.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const auto font_path = "/usr/share/fonts/truetype/tlwg/TlwgTypo-Bold.ttf";
|
||
|
|
||
|
FontReader reader;
|
||
|
reader.setPath(font_path);
|
||
|
auto font = reader.read();
|
||
|
|
||
|
font->dumpInfo();
|
||
|
|
||
|
return 0;
|
||
|
}
|