我要提取文字輪廓,百度首頁相關都是MoveTo和LineTos,搜索Quadratic curves看到下面這個教程,
第一句This tutorial shows how to load True Type font with help of WinAPI. 就新建了空的win32 application,source files|add *.cpp。
復制第一段
HFONT fontPtr;
const int sizeOfFont = 30;
// load font by name and parameters, initializeFont("Arial", false, false);
void initializeFont(const std::string fontName, bool bold, bool italic)
{
bool weight = FW_REGULAR;
if(bold)
{
weight = FW_BOLD;
}
// create WinAPI font
fontPtr = CreateFont(
sizeOfFont, 0, 0, 0,
weight, italic, 0, 0, DEFAULT_CHARSET,
OUT_DEVICE_PRECIS, CLIP_DEFAULT_PRECIS, NONANTIALIASED_QUALITY,
FF_DONTCARE, fontName.c_str()
);
if(fontPtr == nullptr)
{
// impossible to create font
}
}
到Microsoft Visual Studio 2010。
HFONT未定義 加了#include "windows.h",
"std is not a class name or namespace",加了#include 。
教程上的代碼片應該是可以通過編譯的吧?條件是什麼?
http://blog.csdn.net/zhouxuguang236/article/details/8761497