发布于 2015-11-22 11:27:44 | 583 次阅读 | 评论: 0 | 来源: PHPERZ

这里有新鲜出炉的精品教程,程序狗速度看过来!

FreeType 字体工具

FreeType 2被设计为一种占用空间小的、高效的、高度可定制的、并且可以产生可移植的高品质输出(符号图像)。可以被用在诸如图像库、展出服务器、字体转换工具、图像文字产生工具等多种其它产品上。


一 下载编译freetype库

1 下载

地址:http://www.freetype.org/
得到压缩文件:freetype-2.5.3.tar.gz

2 解压:

直接解压,得到目录freetype-2.5.3

3 编译:

用vs2010打开:(路径)\freetype-2.5.3\builds\windows\vc2010\freetype.sln

二 将freetype库添加到工程

1 添加包含目录

依次点击:Project->properties->VC++directories->Include Directories
添加:(路径)\freetype-2.5.3\include
 

2 添加库目录

依次点击:Project->properties->VC++directories->Library Directories
添加:(路径)\freetype-2.5.3\objs\win32\vc2010
 

3 添加附加依赖项

依次点击:Project->properties->Linker->Input->Additional Dependencies
添加:(路径)\freetype253.lib;freetype253_D.lib
 

三 测试

运行以下代码:
 

#include <ft2build.h>
#include FT_FREETYPE_H
#include <iostream>
using namespace std;


int main()
{
	FT_Library library;
	FT_Init_FreeType(&library);


	FT_Face face;
	FT_New_Face(library, "msyh.ttf", 0, &face);


	cout<<"num_glyphs:"<<face->num_glyphs<<endl;
	cout<<"num_faces:"<<face->num_faces<<endl;
	system("Pause");
	return 0;
}


能编译运行,就一切ok了



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务