使用vtk进行软件开发遇到一个头疼的问题,无法直接解析中文字符。网上查了很多资料,一直未果。有的资料显示要自己添加类,重新编译VTK,这样工作量非常大,且易出错,效果并未能达到想要的结果。经过一番实践,终于找到简便方法。下面做详细介绍,,希望给需要的朋友带来帮助:
1.首先使用类vtkVectorText创建向量文本,然后使用类vtkTextActor设置对象actor,actor->setFontFamily(VTK_FONT_FILE);actor->setFontFile("字体文件路径");
2.使用下面函数将:std::string a对象转化为UTF8编码;
std::string string_To_UTF8(const std::string & str)
{
int nwLen = ::MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, NULL, 0);
wchar_t * pwBuf = new wchar_t[nwLen + 1];//一定要加1,不然会出现尾巴
ZeroMemory(pwBuf, nwLen * 2 + 2);
::MultiByteToWideChar(CP_ACP, 0, str.c_str(), str.length(), pwBuf, nwLen);
int nLen = ::WideCharToMultiByte(CP_UTF8, 0, pwBuf, -1, NULL, NULL, NULL, NULL);
char * pBuf = new char[nLen + 1];
ZeroMemory(pBuf, nLen + 1);
::WideCharToMultiByte(CP_UTF8, 0, pwBuf, nwLen, pBuf, nLen, NULL, NULL);
std::string retStr(pBuf);
delete []pwBuf;
delete []pBuf;
pwBuf = NULL;
pBuf = NULL;
return retStr;
}
3.使用类vtkUnicodeString:
vtkUnicodeString str = vtkUnicodeString ::from_utf8("");//参数为2.获得结果
4.将对象str作为vtkActor的输入即可轻松实现。
注意:想实现不同字体,需要设置不同的系统字体库。在第一步中设置。