实例介绍
【实例简介】
选择Qt来做工具的UI,但是因为安装的是mingw版本的Qt,之前在VS中使用的lib静态库这一下就派不上用场了,网上搜索到可以用工具把 lib 文件转换成 .a 文件,但是自己尝试后没有生成成功,加之这种转换也有各种局限性,所以还是把 FreeType的源代码下过来,用Qt新建一个Lib工程来编译。
【实例截图】
【核心代码】
libFreeType_Qt_0826.zip
├── build-libFreeType-Desktop_Qt_5_5_0_MinGW_32bit-Debug
│ ├── debug
│ │ ├── autofit.o
│ │ ├── bdf.o
│ │ ├── cff.o
│ │ ├── ftbase.o
│ │ ├── ftbbox.o
│ │ ├── ftbitmap.o
│ │ ├── ftcache.o
│ │ ├── ftdebug.o
│ │ ├── ftfntfmt.o
│ │ ├── ftfstype.o
│ │ ├── ftgasp.o
│ │ ├── ftglyph.o
│ │ ├── ftgxval.o
│ │ ├── ftgzip.o
│ │ ├── ftinit.o
│ │ ├── ftlcdfil.o
│ │ ├── ftlzw.o
│ │ ├── ftmm.o
│ │ ├── ftotval.o
│ │ ├── ftpatent.o
│ │ ├── ftpfr.o
│ │ ├── ftsmooth.o
│ │ ├── ftstroke.o
│ │ ├── ftsynth.o
│ │ ├── ftsystem.o
│ │ ├── fttype1.o
│ │ ├── ftwinfnt.o
│ │ ├── libFreeType.dll
│ │ ├── liblibFreeType.a
│ │ ├── pcf.o
│ │ ├── pfr.o
│ │ ├── psaux.o
│ │ ├── pshinter.o
│ │ ├── psmodule.o
│ │ ├── raster.o
│ │ ├── sfnt.o
│ │ ├── smooth.o
│ │ ├── truetype.o
│ │ ├── type1cid.o
│ │ ├── type1.o
│ │ ├── type42.o
│ │ └── winfnt.o
│ ├── Makefile
│ ├── Makefile.Debug
│ ├── Makefile.Release
│ ├── object_script.libFreeType.Debug
│ ├── object_script.libFreeType.Release
│ └── release
└── libFreeType
├── freetype-2.6
│ ├── autogen.sh
│ ├── builds
│ │ ├── amiga
│ │ │ ├── include
│ │ │ │ └── config
│ │ │ │ ├── ftconfig.h
│ │ │ │ └── ftmodule.h
│ │ │ ├── makefile
│ │ │ ├── makefile.os4
│ │ │ ├── README
│ │ │ ├── smakefile
│ │ │ └── src
│ │ │ └── base
│ │ │ ├── ftdebug.c
│ │ │ └── ftsystem.c
│ │ ├── ansi
│ │ │ ├── ansi-def.mk
│ │ │ └── ansi.mk
│ │ ├── atari
│ │ │ ├── ATARI.H
│ │ │ ├── deflinejoiner.awk
│ │ │ ├── FNames.SIC
│ │ │ ├── FREETYPE.PRJ
│ │ │ ├── gen-purec-patch.sh
│ │ │ └── README.TXT
│ │ ├── beos
│ │ │ ├── beos-def.mk
│ │ │ ├── beos.mk
│ │ │ └── detect.mk
│ │ ├── cmake
│ │ │ └── iOS.cmake
│ │ ├── compiler
│ │ │ ├── ansi-cc.mk
│ │ │ ├── bcc-dev.mk
│ │ │ ├── bcc.mk
│ │ │ ├── emx.mk
│ │ │ ├── gcc-dev.mk
│ │ │ ├── gcc.mk
│ │ │ ├── intelc.mk
│ │ │ ├── unix-lcc.mk
│ │ │ ├── visualage.mk
│ │ │ ├── visualc.mk
│ │ │ ├── watcom.mk
│ │ │ └── win-lcc.mk
│ │ ├── detect.mk
│ │ ├── dos
│ │ │ ├── detect.mk
│ │ │ ├── dos-def.mk
│ │ │ ├── dos-emx.mk
│ │ │ ├── dos-gcc.mk
│ │ │ └── dos-wat.mk
│ │ ├── exports.mk
│ │ ├── freetype.mk
│ │ ├── link_dos.mk
│ │ ├── link_std.mk
│ │ ├── mac
│ │ │ ├── ascii2mpw.py
│ │ │ ├── freetype-Info.plist
│ │ │ ├── FreeType.m68k_cfm.make.txt
│ │ │ ├── FreeType.m68k_far.make.txt
│ │ │ ├── FreeType.ppc_carbon.make.txt
│ │ │ ├── FreeType.ppc_classic.make.txt
│ │ │ ├── ftlib.prj.xml
│ │ │ ├── ftmac.c
│ │ │ └── README
│ │ ├── modules.mk
│ │ ├── newline
│ │ ├── os2
│ │ │ ├── detect.mk
│ │ │ ├── os2-def.mk
│ │ │ ├── os2-dev.mk
│ │ │ └── os2-gcc.mk
│ │ ├── symbian
│ │ │ ├── bld.inf
│ │ │ └── freetype.mmp
│ │ ├── toplevel.mk
│ │ ├── unix
│ │ │ ├── aclocal.m4
│ │ │ ├── config.guess
│ │ │ ├── config.sub
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── configure.raw
│ │ │ ├── detect.mk
│ │ │ ├── freetype2.in
│ │ │ ├── freetype2.m4
│ │ │ ├── freetype-config.in
│ │ │ ├── ftconfig.in
│ │ │ ├── ft-munmap.m4
│ │ │ ├── ftsystem.c
│ │ │ ├── install.mk
│ │ │ ├── install-sh
│ │ │ ├── ltmain.sh
│ │ │ ├── mkinstalldirs
│ │ │ ├── pkg.m4
│ │ │ ├── unix-cc.in
│ │ │ ├── unixddef.mk
│ │ │ ├── unix-def.in
│ │ │ ├── unix-dev.mk
│ │ │ ├── unix-lcc.mk
│ │ │ └── unix.mk
│ │ ├── vms
│ │ │ ├── ftconfig.h
│ │ │ └── ftsystem.c
│ │ ├── wince
│ │ │ ├── ftdebug.c
│ │ │ ├── vc2005-ce
│ │ │ │ ├── freetype.sln
│ │ │ │ ├── freetype.vcproj
│ │ │ │ └── index.html
│ │ │ └── vc2008-ce
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ └── windows
│ │ ├── detect.mk
│ │ ├── ftdebug.c
│ │ ├── vc2005
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── vc2008
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── vc2010
│ │ │ ├── freetype.opensdf
│ │ │ ├── freetype.sdf
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.user.props
│ │ │ ├── freetype.v12.suo
│ │ │ ├── freetype.vcxproj
│ │ │ ├── freetype.vcxproj.filters
│ │ │ ├── freetype.vcxproj.user
│ │ │ └── index.html
│ │ ├── visualc
│ │ │ ├── freetype.dsp
│ │ │ ├── freetype.dsw
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── visualce
│ │ │ ├── freetype.dsp
│ │ │ ├── freetype.dsw
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── w32-bccd.mk
│ │ ├── w32-bcc.mk
│ │ ├── w32-dev.mk
│ │ ├── w32-gcc.mk
│ │ ├── w32-icc.mk
│ │ ├── w32-intl.mk
│ │ ├── w32-lcc.mk
│ │ ├── w32-mingw32.mk
│ │ ├── w32-vcc.mk
│ │ ├── w32-wat.mk
│ │ └── win32-def.mk
│ ├── ChangeLog
│ ├── ChangeLog.20
│ ├── ChangeLog.21
│ ├── ChangeLog.22
│ ├── ChangeLog.23
│ ├── ChangeLog.24
│ ├── CMakeLists.txt
│ ├── configure
│ ├── devel
│ │ ├── ft2build.h
│ │ └── ftoption.h
│ ├── docs
│ │ ├── CHANGES
│ │ ├── CMAKE
│ │ ├── CUSTOMIZE
│ │ ├── DEBUG
│ │ ├── formats.txt
│ │ ├── freetype-config.1
│ │ ├── FTL.TXT
│ │ ├── GPLv2.TXT
│ │ ├── INSTALL
│ │ ├── INSTALL.ANY
│ │ ├── INSTALL.CROSS
│ │ ├── INSTALL.GNU
│ │ ├── INSTALL.MAC
│ │ ├── INSTALL.UNIX
│ │ ├── INSTALL.VMS
│ │ ├── LICENSE.TXT
│ │ ├── MAKEPP
│ │ ├── PROBLEMS
│ │ ├── raster.txt
│ │ ├── reference
│ │ │ ├── ft2-auto_hinter.html
│ │ │ ├── ft2-base_interface.html
│ │ │ ├── ft2-basic_types.html
│ │ │ ├── ft2-bdf_fonts.html
│ │ │ ├── ft2-bitmap_handling.html
│ │ │ ├── ft2-bzip2.html
│ │ │ ├── ft2-cache_subsystem.html
│ │ │ ├── ft2-cff_driver.html
│ │ │ ├── ft2-cid_fonts.html
│ │ │ ├── ft2-computations.html
│ │ │ ├── ft2-font_formats.html
│ │ │ ├── ft2-gasp_table.html
│ │ │ ├── ft2-glyph_management.html
│ │ │ ├── ft2-glyph_stroker.html
│ │ │ ├── ft2-glyph_variants.html
│ │ │ ├── ft2-gx_validation.html
│ │ │ ├── ft2-gzip.html
│ │ │ ├── ft2-header_file_macros.html
│ │ │ ├── ft2-header_inclusion.html
│ │ │ ├── ft2-incremental.html
│ │ │ ├── ft2-index.html
│ │ │ ├── ft2-lcd_filtering.html
│ │ │ ├── ft2-list_processing.html
│ │ │ ├── ft2-lzw.html
│ │ │ ├── ft2-mac_specific.html
│ │ │ ├── ft2-module_management.html
│ │ │ ├── ft2-multiple_masters.html
│ │ │ ├── ft2-ot_validation.html
│ │ │ ├── ft2-outline_processing.html
│ │ │ ├── ft2-pfr_fonts.html
│ │ │ ├── ft2-quick_advance.html
│ │ │ ├── ft2-raster.html
│ │ │ ├── ft2-sfnt_names.html
│ │ │ ├── ft2-sizes_management.html
│ │ │ ├── ft2-system_interface.html
│ │ │ ├── ft2-toc.html
│ │ │ ├── ft2-truetype_engine.html
│ │ │ ├── ft2-truetype_tables.html
│ │ │ ├── ft2-tt_driver.html
│ │ │ ├── ft2-type1_tables.html
│ │ │ ├── ft2-user_allocation.html
│ │ │ ├── ft2-version.html
│ │ │ ├── ft2-winfnt_fonts.html
│ │ │ └── README
│ │ ├── release
│ │ ├── TODO
│ │ └── VERSION.DLL
│ ├── include
│ │ ├── config
│ │ │ ├── ftconfig.h
│ │ │ ├── ftheader.h
│ │ │ ├── ftmodule.h
│ │ │ ├── ftoption.h
│ │ │ └── ftstdlib.h
│ │ ├── freetype.h
│ │ ├── ft2build.h
│ │ ├── ftadvanc.h
│ │ ├── ftautoh.h
│ │ ├── ftbbox.h
│ │ ├── ftbdf.h
│ │ ├── ftbitmap.h
│ │ ├── ftbzip2.h
│ │ ├── ftcache.h
│ │ ├── ftcffdrv.h
│ │ ├── ftchapters.h
│ │ ├── ftcid.h
│ │ ├── fterrdef.h
│ │ ├── fterrors.h
│ │ ├── ftfntfmt.h
│ │ ├── ftgasp.h
│ │ ├── ftglyph.h
│ │ ├── ftgxval.h
│ │ ├── ftgzip.h
│ │ ├── ftimage.h
│ │ ├── ftincrem.h
│ │ ├── ftlcdfil.h
│ │ ├── ftlist.h
│ │ ├── ftlzw.h
│ │ ├── ftmac.h
│ │ ├── ftmm.h
│ │ ├── ftmodapi.h
│ │ ├── ftmoderr.h
│ │ ├── ftotval.h
│ │ ├── ftoutln.h
│ │ ├── ftpfr.h
│ │ ├── ftrender.h
│ │ ├── ftsizes.h
│ │ ├── ftsnames.h
│ │ ├── ftstroke.h
│ │ ├── ftsynth.h
│ │ ├── ftsystem.h
│ │ ├── fttrigon.h
│ │ ├── ftttdrv.h
│ │ ├── fttypes.h
│ │ ├── ftwinfnt.h
│ │ ├── internal
│ │ │ ├── autohint.h
│ │ │ ├── ftcalc.h
│ │ │ ├── ftdebug.h
│ │ │ ├── ftdriver.h
│ │ │ ├── ftgloadr.h
│ │ │ ├── ftmemory.h
│ │ │ ├── ftobjs.h
│ │ │ ├── ftpic.h
│ │ │ ├── ftrfork.h
│ │ │ ├── ftserv.h
│ │ │ ├── ftstream.h
│ │ │ ├── fttrace.h
│ │ │ ├── ftvalid.h
│ │ │ ├── internal.h
│ │ │ ├── psaux.h
│ │ │ ├── pshints.h
│ │ │ ├── services
│ │ │ │ ├── svbdf.h
│ │ │ │ ├── svcid.h
│ │ │ │ ├── svfntfmt.h
│ │ │ │ ├── svgldict.h
│ │ │ │ ├── svgxval.h
│ │ │ │ ├── svkern.h
│ │ │ │ ├── svmm.h
│ │ │ │ ├── svotval.h
│ │ │ │ ├── svpfr.h
│ │ │ │ ├── svpostnm.h
│ │ │ │ ├── svprop.h
│ │ │ │ ├── svpscmap.h
│ │ │ │ ├── svpsinfo.h
│ │ │ │ ├── svsfnt.h
│ │ │ │ ├── svttcmap.h
│ │ │ │ ├── svtteng.h
│ │ │ │ ├── svttglyf.h
│ │ │ │ └── svwinfnt.h
│ │ │ ├── sfnt.h
│ │ │ ├── t1types.h
│ │ │ └── tttypes.h
│ │ ├── t1tables.h
│ │ ├── ttnameid.h
│ │ ├── tttables.h
│ │ ├── tttags.h
│ │ └── ttunpat.h
│ ├── Jamfile
│ ├── Jamrules
│ ├── Makefile
│ ├── modules.cfg
│ ├── objs
│ │ ├── README
│ │ └── vc2010
│ │ └── Win32
│ │ ├── Debug
│ │ │ ├── autofit.obj
│ │ │ ├── bdf.obj
│ │ │ ├── cff.obj
│ │ │ ├── freetype.log
│ │ │ ├── freetype.tlog
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── freetype.lastbuildstate
│ │ │ │ ├── lib.command.1.tlog
│ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ └── Lib-link.write.1.tlog
│ │ │ ├── ftbase.obj
│ │ │ ├── ftbbox.obj
│ │ │ ├── ftbitmap.obj
│ │ │ ├── ftcache.obj
│ │ │ ├── ftdebug.obj
│ │ │ ├── ftfntfmt.obj
│ │ │ ├── ftfstype.obj
│ │ │ ├── ftgasp.obj
│ │ │ ├── ftglyph.obj
│ │ │ ├── ftgxval.obj
│ │ │ ├── ftgzip.obj
│ │ │ ├── ftinit.obj
│ │ │ ├── ftlcdfil.obj
│ │ │ ├── ftlzw.obj
│ │ │ ├── ftmm.obj
│ │ │ ├── ftotval.obj
│ │ │ ├── ftpatent.obj
│ │ │ ├── ftpfr.obj
│ │ │ ├── ftstroke.obj
│ │ │ ├── ftsynth.obj
│ │ │ ├── ftsystem.obj
│ │ │ ├── fttype1.obj
│ │ │ ├── ftwinfnt.obj
│ │ │ ├── pcf.obj
│ │ │ ├── pfr.obj
│ │ │ ├── psaux.obj
│ │ │ ├── pshinter.obj
│ │ │ ├── psmodule.obj
│ │ │ ├── raster.obj
│ │ │ ├── sfnt.obj
│ │ │ ├── smooth.obj
│ │ │ ├── truetype.obj
│ │ │ ├── type1cid.obj
│ │ │ ├── type1.obj
│ │ │ ├── type42.obj
│ │ │ └── winfnt.obj
│ │ ├── freetype26d.lib
│ │ └── freetype26d.pdb
│ ├── README
│ ├── README.git
│ ├── src
│ │ ├── autofit
│ │ │ ├── afangles.c
│ │ │ ├── afangles.h
│ │ │ ├── afblue.c
│ │ │ ├── afblue.cin
│ │ │ ├── afblue.dat
│ │ │ ├── afblue.h
│ │ │ ├── afblue.hin
│ │ │ ├── afcjk.c
│ │ │ ├── afcjk.h
│ │ │ ├── afcover.h
│ │ │ ├── afdummy.c
│ │ │ ├── afdummy.h
│ │ │ ├── aferrors.h
│ │ │ ├── afglobal.c
│ │ │ ├── afglobal.h
│ │ │ ├── afhints.c
│ │ │ ├── afhints.h
│ │ │ ├── afindic.c
│ │ │ ├── afindic.h
│ │ │ ├── aflatin2.c
│ │ │ ├── aflatin2.h
│ │ │ ├── aflatin.c
│ │ │ ├── aflatin.h
│ │ │ ├── afloader.c
│ │ │ ├── afloader.h
│ │ │ ├── afmodule.c
│ │ │ ├── afmodule.h
│ │ │ ├── afpic.c
│ │ │ ├── afpic.h
│ │ │ ├── afranges.c
│ │ │ ├── afranges.h
│ │ │ ├── afscript.h
│ │ │ ├── afstyles.h
│ │ │ ├── aftypes.h
│ │ │ ├── afwarp.c
│ │ │ ├── afwarp.h
│ │ │ ├── afwrtsys.h
│ │ │ ├── autofit.c
│ │ │ ├── hbshim.c
│ │ │ ├── hbshim.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ └── rules.mk
│ │ ├── base
│ │ │ ├── basepic.c
│ │ │ ├── basepic.h
│ │ │ ├── ftadvanc.c
│ │ │ ├── ftapi.c
│ │ │ ├── ftbase.c
│ │ │ ├── ftbase.h
│ │ │ ├── ftbbox.c
│ │ │ ├── ftbdf.c
│ │ │ ├── ftbitmap.c
│ │ │ ├── ftcalc.c
│ │ │ ├── ftcid.c
│ │ │ ├── ftdbgmem.c
│ │ │ ├── ftdebug.c
│ │ │ ├── ftfntfmt.c
│ │ │ ├── ftfstype.c
│ │ │ ├── ftgasp.c
│ │ │ ├── ftgloadr.c
│ │ │ ├── ftglyph.c
│ │ │ ├── ftgxval.c
│ │ │ ├── ftinit.c
│ │ │ ├── ftlcdfil.c
│ │ │ ├── ftmac.c
│ │ │ ├── ftmm.c
│ │ │ ├── ftobjs.c
│ │ │ ├── ftotval.c
│ │ │ ├── ftoutln.c
│ │ │ ├── ftpatent.c
│ │ │ ├── ftpfr.c
│ │ │ ├── ftpic.c
│ │ │ ├── ftrfork.c
│ │ │ ├── ftsnames.c
│ │ │ ├── ftstream.c
│ │ │ ├── ftstroke.c
│ │ │ ├── ftsynth.c
│ │ │ ├── ftsystem.c
│ │ │ ├── fttrigon.c
│ │ │ ├── fttype1.c
│ │ │ ├── ftutil.c
│ │ │ ├── ftwinfnt.c
│ │ │ ├── Jamfile
│ │ │ ├── md5.c
│ │ │ ├── md5.h
│ │ │ └── rules.mk
│ │ ├── bdf
│ │ │ ├── bdf.c
│ │ │ ├── bdfdrivr.c
│ │ │ ├── bdfdrivr.h
│ │ │ ├── bdferror.h
│ │ │ ├── bdf.h
│ │ │ ├── bdflib.c
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── bzip2
│ │ │ ├── ftbzip2.c
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── cache
│ │ │ ├── ftcache.c
│ │ │ ├── ftcbasic.c
│ │ │ ├── ftccache.c
│ │ │ ├── ftccache.h
│ │ │ ├── ftccback.h
│ │ │ ├── ftccmap.c
│ │ │ ├── ftcerror.h
│ │ │ ├── ftcglyph.c
│ │ │ ├── ftcglyph.h
│ │ │ ├── ftcimage.c
│ │ │ ├── ftcimage.h
│ │ │ ├── ftcmanag.c
│ │ │ ├── ftcmanag.h
│ │ │ ├── ftcmru.c
│ │ │ ├── ftcmru.h
│ │ │ ├── ftcsbits.c
│ │ │ ├── ftcsbits.h
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── cff
│ │ │ ├── cf2arrst.c
│ │ │ ├── cf2arrst.h
│ │ │ ├── cf2blues.c
│ │ │ ├── cf2blues.h
│ │ │ ├── cf2error.c
│ │ │ ├── cf2error.h
│ │ │ ├── cf2fixed.h
│ │ │ ├── cf2font.c
│ │ │ ├── cf2font.h
│ │ │ ├── cf2ft.c
│ │ │ ├── cf2ft.h
│ │ │ ├── cf2glue.h
│ │ │ ├── cf2hints.c
│ │ │ ├── cf2hints.h
│ │ │ ├── cf2intrp.c
│ │ │ ├── cf2intrp.h
│ │ │ ├── cf2read.c
│ │ │ ├── cf2read.h
│ │ │ ├── cf2stack.c
│ │ │ ├── cf2stack.h
│ │ │ ├── cf2types.h
│ │ │ ├── cff.c
│ │ │ ├── cffcmap.c
│ │ │ ├── cffcmap.h
│ │ │ ├── cffdrivr.c
│ │ │ ├── cffdrivr.h
│ │ │ ├── cfferrs.h
│ │ │ ├── cffgload.c
│ │ │ ├── cffgload.h
│ │ │ ├── cffload.c
│ │ │ ├── cffload.h
│ │ │ ├── cffobjs.c
│ │ │ ├── cffobjs.h
│ │ │ ├── cffparse.c
│ │ │ ├── cffparse.h
│ │ │ ├── cffpic.c
│ │ │ ├── cffpic.h
│ │ │ ├── cfftoken.h
│ │ │ ├── cfftypes.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ └── rules.mk
│ │ ├── cid
│ │ │ ├── ciderrs.h
│ │ │ ├── cidgload.c
│ │ │ ├── cidgload.h
│ │ │ ├── cidload.c
│ │ │ ├── cidload.h
│ │ │ ├── cidobjs.c
│ │ │ ├── cidobjs.h
│ │ │ ├── cidparse.c
│ │ │ ├── cidparse.h
│ │ │ ├── cidriver.c
│ │ │ ├── cidriver.h
│ │ │ ├── cidtoken.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ └── type1cid.c
│ │ ├── gxvalid
│ │ │ ├── gxvalid.c
│ │ │ ├── gxvalid.h
│ │ │ ├── gxvbsln.c
│ │ │ ├── gxvcommn.c
│ │ │ ├── gxvcommn.h
│ │ │ ├── gxverror.h
│ │ │ ├── gxvfeat.c
│ │ │ ├── gxvfeat.h
│ │ │ ├── gxvfgen.c
│ │ │ ├── gxvjust.c
│ │ │ ├── gxvkern.c
│ │ │ ├── gxvlcar.c
│ │ │ ├── gxvmod.c
│ │ │ ├── gxvmod.h
│ │ │ ├── gxvmort0.c
│ │ │ ├── gxvmort1.c
│ │ │ ├── gxvmort2.c
│ │ │ ├── gxvmort4.c
│ │ │ ├── gxvmort5.c
│ │ │ ├── gxvmort.c
│ │ │ ├── gxvmort.h
│ │ │ ├── gxvmorx0.c
│ │ │ ├── gxvmorx1.c
│ │ │ ├── gxvmorx2.c
│ │ │ ├── gxvmorx4.c
│ │ │ ├── gxvmorx5.c
│ │ │ ├── gxvmorx.c
│ │ │ ├── gxvmorx.h
│ │ │ ├── gxvopbd.c
│ │ │ ├── gxvprop.c
│ │ │ ├── gxvtrak.c
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── gzip
│ │ │ ├── adler32.c
│ │ │ ├── ftgzip.c
│ │ │ ├── infblock.c
│ │ │ ├── infblock.h
│ │ │ ├── infcodes.c
│ │ │ ├── infcodes.h
│ │ │ ├── inffixed.h
│ │ │ ├── inflate.c
│ │ │ ├── inftrees.c
│ │ │ ├── inftrees.h
│ │ │ ├── infutil.c
│ │ │ ├── infutil.h
│ │ │ ├── Jamfile
│ │ │ ├── rules.mk
│ │ │ ├── zconf.h
│ │ │ ├── zlib.h
│ │ │ ├── zutil.c
│ │ │ └── zutil.h
│ │ ├── Jamfile
│ │ ├── lzw
│ │ │ ├── ftlzw.c
│ │ │ ├── ftzopen.c
│ │ │ ├── ftzopen.h
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── otvalid
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── otvalid.c
│ │ │ ├── otvalid.h
│ │ │ ├── otvbase.c
│ │ │ ├── otvcommn.c
│ │ │ ├── otvcommn.h
│ │ │ ├── otverror.h
│ │ │ ├── otvgdef.c
│ │ │ ├── otvgpos.c
│ │ │ ├── otvgpos.h
│ │ │ ├── otvgsub.c
│ │ │ ├── otvjstf.c
│ │ │ ├── otvmath.c
│ │ │ ├── otvmod.c
│ │ │ ├── otvmod.h
│ │ │ └── rules.mk
│ │ ├── pcf
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pcf.c
│ │ │ ├── pcfdrivr.c
│ │ │ ├── pcfdrivr.h
│ │ │ ├── pcferror.h
│ │ │ ├── pcf.h
│ │ │ ├── pcfread.c
│ │ │ ├── pcfread.h
│ │ │ ├── pcfutil.c
│ │ │ ├── pcfutil.h
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── pfr
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pfr.c
│ │ │ ├── pfrcmap.c
│ │ │ ├── pfrcmap.h
│ │ │ ├── pfrdrivr.c
│ │ │ ├── pfrdrivr.h
│ │ │ ├── pfrerror.h
│ │ │ ├── pfrgload.c
│ │ │ ├── pfrgload.h
│ │ │ ├── pfrload.c
│ │ │ ├── pfrload.h
│ │ │ ├── pfrobjs.c
│ │ │ ├── pfrobjs.h
│ │ │ ├── pfrsbit.c
│ │ │ ├── pfrsbit.h
│ │ │ ├── pfrtypes.h
│ │ │ └── rules.mk
│ │ ├── psaux
│ │ │ ├── afmparse.c
│ │ │ ├── afmparse.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── psaux.c
│ │ │ ├── psauxerr.h
│ │ │ ├── psauxmod.c
│ │ │ ├── psauxmod.h
│ │ │ ├── psconv.c
│ │ │ ├── psconv.h
│ │ │ ├── psobjs.c
│ │ │ ├── psobjs.h
│ │ │ ├── rules.mk
│ │ │ ├── t1cmap.c
│ │ │ ├── t1cmap.h
│ │ │ ├── t1decode.c
│ │ │ └── t1decode.h
│ │ ├── pshinter
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pshalgo.c
│ │ │ ├── pshalgo.h
│ │ │ ├── pshglob.c
│ │ │ ├── pshglob.h
│ │ │ ├── pshinter.c
│ │ │ ├── pshmod.c
│ │ │ ├── pshmod.h
│ │ │ ├── pshnterr.h
│ │ │ ├── pshpic.c
│ │ │ ├── pshpic.h
│ │ │ ├── pshrec.c
│ │ │ ├── pshrec.h
│ │ │ └── rules.mk
│ │ ├── psnames
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── psmodule.c
│ │ │ ├── psmodule.h
│ │ │ ├── psnamerr.h
│ │ │ ├── psnames.c
│ │ │ ├── pspic.c
│ │ │ ├── pspic.h
│ │ │ ├── pstables.h
│ │ │ └── rules.mk
│ │ ├── raster
│ │ │ ├── ftmisc.h
│ │ │ ├── ftraster.c
│ │ │ ├── ftraster.h
│ │ │ ├── ftrend1.c
│ │ │ ├── ftrend1.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── raster.c
│ │ │ ├── rasterrs.h
│ │ │ ├── rastpic.c
│ │ │ ├── rastpic.h
│ │ │ └── rules.mk
│ │ ├── sfnt
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pngshim.c
│ │ │ ├── pngshim.h
│ │ │ ├── rules.mk
│ │ │ ├── sfdriver.c
│ │ │ ├── sfdriver.h
│ │ │ ├── sferrors.h
│ │ │ ├── sfnt.c
│ │ │ ├── sfntpic.c
│ │ │ ├── sfntpic.h
│ │ │ ├── sfobjs.c
│ │ │ ├── sfobjs.h
│ │ │ ├── ttbdf.c
│ │ │ ├── ttbdf.h
│ │ │ ├── ttcmap.c
│ │ │ ├── ttcmapc.h
│ │ │ ├── ttcmap.h
│ │ │ ├── ttkern.c
│ │ │ ├── ttkern.h
│ │ │ ├── ttload.c
│ │ │ ├── ttload.h
│ │ │ ├── ttmtx.c
│ │ │ ├── ttmtx.h
│ │ │ ├── ttpost.c
│ │ │ ├── ttpost.h
│ │ │ ├── ttsbit.c
│ │ │ └── ttsbit.h
│ │ ├── smooth
│ │ │ ├── ftgrays.c
│ │ │ ├── ftgrays.h
│ │ │ ├── ftsmerrs.h
│ │ │ ├── ftsmooth.c
│ │ │ ├── ftsmooth.h
│ │ │ ├── ftspic.c
│ │ │ ├── ftspic.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ └── smooth.c
│ │ ├── tools
│ │ │ ├── afblue.pl
│ │ │ ├── apinames.c
│ │ │ ├── chktrcmp.py
│ │ │ ├── cordic.py
│ │ │ ├── docmaker
│ │ │ │ ├── content.py
│ │ │ │ ├── docbeauty.py
│ │ │ │ ├── docmaker.py
│ │ │ │ ├── formatter.py
│ │ │ │ ├── sources.py
│ │ │ │ ├── tohtml.py
│ │ │ │ └── utils.py
│ │ │ ├── ftrandom
│ │ │ │ ├── ftrandom.c
│ │ │ │ ├── Makefile
│ │ │ │ └── README
│ │ │ ├── glnames.py
│ │ │ ├── Jamfile
│ │ │ ├── no-copyright
│ │ │ ├── test_afm.c
│ │ │ ├── test_bbox.c
│ │ │ ├── test_trig.c
│ │ │ ├── update-copyright
│ │ │ └── update-copyright-year
│ │ ├── truetype
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── truetype.c
│ │ │ ├── ttdriver.c
│ │ │ ├── ttdriver.h
│ │ │ ├── tterrors.h
│ │ │ ├── ttgload.c
│ │ │ ├── ttgload.h
│ │ │ ├── ttgxvar.c
│ │ │ ├── ttgxvar.h
│ │ │ ├── ttinterp.c
│ │ │ ├── ttinterp.h
│ │ │ ├── ttobjs.c
│ │ │ ├── ttobjs.h
│ │ │ ├── ttpic.c
│ │ │ ├── ttpic.h
│ │ │ ├── ttpload.c
│ │ │ ├── ttpload.h
│ │ │ ├── ttsubpix.c
│ │ │ └── ttsubpix.h
│ │ ├── type1
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── t1afm.c
│ │ │ ├── t1afm.h
│ │ │ ├── t1driver.c
│ │ │ ├── t1driver.h
│ │ │ ├── t1errors.h
│ │ │ ├── t1gload.c
│ │ │ ├── t1gload.h
│ │ │ ├── t1load.c
│ │ │ ├── t1load.h
│ │ │ ├── t1objs.c
│ │ │ ├── t1objs.h
│ │ │ ├── t1parse.c
│ │ │ ├── t1parse.h
│ │ │ ├── t1tokens.h
│ │ │ └── type1.c
│ │ ├── type42
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── t42drivr.c
│ │ │ ├── t42drivr.h
│ │ │ ├── t42error.h
│ │ │ ├── t42objs.c
│ │ │ ├── t42objs.h
│ │ │ ├── t42parse.c
│ │ │ ├── t42parse.h
│ │ │ ├── t42types.h
│ │ │ └── type42.c
│ │ └── winfonts
│ │ ├── fnterrs.h
│ │ ├── Jamfile
│ │ ├── module.mk
│ │ ├── rules.mk
│ │ ├── winfnt.c
│ │ └── winfnt.h
│ ├── version.sed
│ └── vms_make.com
├── libFreeType.pro
└── libFreeType.pro.user
70 directories, 857 files
选择Qt来做工具的UI,但是因为安装的是mingw版本的Qt,之前在VS中使用的lib静态库这一下就派不上用场了,网上搜索到可以用工具把 lib 文件转换成 .a 文件,但是自己尝试后没有生成成功,加之这种转换也有各种局限性,所以还是把 FreeType的源代码下过来,用Qt新建一个Lib工程来编译。
【实例截图】
【核心代码】
libFreeType_Qt_0826.zip
├── build-libFreeType-Desktop_Qt_5_5_0_MinGW_32bit-Debug
│ ├── debug
│ │ ├── autofit.o
│ │ ├── bdf.o
│ │ ├── cff.o
│ │ ├── ftbase.o
│ │ ├── ftbbox.o
│ │ ├── ftbitmap.o
│ │ ├── ftcache.o
│ │ ├── ftdebug.o
│ │ ├── ftfntfmt.o
│ │ ├── ftfstype.o
│ │ ├── ftgasp.o
│ │ ├── ftglyph.o
│ │ ├── ftgxval.o
│ │ ├── ftgzip.o
│ │ ├── ftinit.o
│ │ ├── ftlcdfil.o
│ │ ├── ftlzw.o
│ │ ├── ftmm.o
│ │ ├── ftotval.o
│ │ ├── ftpatent.o
│ │ ├── ftpfr.o
│ │ ├── ftsmooth.o
│ │ ├── ftstroke.o
│ │ ├── ftsynth.o
│ │ ├── ftsystem.o
│ │ ├── fttype1.o
│ │ ├── ftwinfnt.o
│ │ ├── libFreeType.dll
│ │ ├── liblibFreeType.a
│ │ ├── pcf.o
│ │ ├── pfr.o
│ │ ├── psaux.o
│ │ ├── pshinter.o
│ │ ├── psmodule.o
│ │ ├── raster.o
│ │ ├── sfnt.o
│ │ ├── smooth.o
│ │ ├── truetype.o
│ │ ├── type1cid.o
│ │ ├── type1.o
│ │ ├── type42.o
│ │ └── winfnt.o
│ ├── Makefile
│ ├── Makefile.Debug
│ ├── Makefile.Release
│ ├── object_script.libFreeType.Debug
│ ├── object_script.libFreeType.Release
│ └── release
└── libFreeType
├── freetype-2.6
│ ├── autogen.sh
│ ├── builds
│ │ ├── amiga
│ │ │ ├── include
│ │ │ │ └── config
│ │ │ │ ├── ftconfig.h
│ │ │ │ └── ftmodule.h
│ │ │ ├── makefile
│ │ │ ├── makefile.os4
│ │ │ ├── README
│ │ │ ├── smakefile
│ │ │ └── src
│ │ │ └── base
│ │ │ ├── ftdebug.c
│ │ │ └── ftsystem.c
│ │ ├── ansi
│ │ │ ├── ansi-def.mk
│ │ │ └── ansi.mk
│ │ ├── atari
│ │ │ ├── ATARI.H
│ │ │ ├── deflinejoiner.awk
│ │ │ ├── FNames.SIC
│ │ │ ├── FREETYPE.PRJ
│ │ │ ├── gen-purec-patch.sh
│ │ │ └── README.TXT
│ │ ├── beos
│ │ │ ├── beos-def.mk
│ │ │ ├── beos.mk
│ │ │ └── detect.mk
│ │ ├── cmake
│ │ │ └── iOS.cmake
│ │ ├── compiler
│ │ │ ├── ansi-cc.mk
│ │ │ ├── bcc-dev.mk
│ │ │ ├── bcc.mk
│ │ │ ├── emx.mk
│ │ │ ├── gcc-dev.mk
│ │ │ ├── gcc.mk
│ │ │ ├── intelc.mk
│ │ │ ├── unix-lcc.mk
│ │ │ ├── visualage.mk
│ │ │ ├── visualc.mk
│ │ │ ├── watcom.mk
│ │ │ └── win-lcc.mk
│ │ ├── detect.mk
│ │ ├── dos
│ │ │ ├── detect.mk
│ │ │ ├── dos-def.mk
│ │ │ ├── dos-emx.mk
│ │ │ ├── dos-gcc.mk
│ │ │ └── dos-wat.mk
│ │ ├── exports.mk
│ │ ├── freetype.mk
│ │ ├── link_dos.mk
│ │ ├── link_std.mk
│ │ ├── mac
│ │ │ ├── ascii2mpw.py
│ │ │ ├── freetype-Info.plist
│ │ │ ├── FreeType.m68k_cfm.make.txt
│ │ │ ├── FreeType.m68k_far.make.txt
│ │ │ ├── FreeType.ppc_carbon.make.txt
│ │ │ ├── FreeType.ppc_classic.make.txt
│ │ │ ├── ftlib.prj.xml
│ │ │ ├── ftmac.c
│ │ │ └── README
│ │ ├── modules.mk
│ │ ├── newline
│ │ ├── os2
│ │ │ ├── detect.mk
│ │ │ ├── os2-def.mk
│ │ │ ├── os2-dev.mk
│ │ │ └── os2-gcc.mk
│ │ ├── symbian
│ │ │ ├── bld.inf
│ │ │ └── freetype.mmp
│ │ ├── toplevel.mk
│ │ ├── unix
│ │ │ ├── aclocal.m4
│ │ │ ├── config.guess
│ │ │ ├── config.sub
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── configure.raw
│ │ │ ├── detect.mk
│ │ │ ├── freetype2.in
│ │ │ ├── freetype2.m4
│ │ │ ├── freetype-config.in
│ │ │ ├── ftconfig.in
│ │ │ ├── ft-munmap.m4
│ │ │ ├── ftsystem.c
│ │ │ ├── install.mk
│ │ │ ├── install-sh
│ │ │ ├── ltmain.sh
│ │ │ ├── mkinstalldirs
│ │ │ ├── pkg.m4
│ │ │ ├── unix-cc.in
│ │ │ ├── unixddef.mk
│ │ │ ├── unix-def.in
│ │ │ ├── unix-dev.mk
│ │ │ ├── unix-lcc.mk
│ │ │ └── unix.mk
│ │ ├── vms
│ │ │ ├── ftconfig.h
│ │ │ └── ftsystem.c
│ │ ├── wince
│ │ │ ├── ftdebug.c
│ │ │ ├── vc2005-ce
│ │ │ │ ├── freetype.sln
│ │ │ │ ├── freetype.vcproj
│ │ │ │ └── index.html
│ │ │ └── vc2008-ce
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ └── windows
│ │ ├── detect.mk
│ │ ├── ftdebug.c
│ │ ├── vc2005
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── vc2008
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── vc2010
│ │ │ ├── freetype.opensdf
│ │ │ ├── freetype.sdf
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.user.props
│ │ │ ├── freetype.v12.suo
│ │ │ ├── freetype.vcxproj
│ │ │ ├── freetype.vcxproj.filters
│ │ │ ├── freetype.vcxproj.user
│ │ │ └── index.html
│ │ ├── visualc
│ │ │ ├── freetype.dsp
│ │ │ ├── freetype.dsw
│ │ │ ├── freetype.sln
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── visualce
│ │ │ ├── freetype.dsp
│ │ │ ├── freetype.dsw
│ │ │ ├── freetype.vcproj
│ │ │ └── index.html
│ │ ├── w32-bccd.mk
│ │ ├── w32-bcc.mk
│ │ ├── w32-dev.mk
│ │ ├── w32-gcc.mk
│ │ ├── w32-icc.mk
│ │ ├── w32-intl.mk
│ │ ├── w32-lcc.mk
│ │ ├── w32-mingw32.mk
│ │ ├── w32-vcc.mk
│ │ ├── w32-wat.mk
│ │ └── win32-def.mk
│ ├── ChangeLog
│ ├── ChangeLog.20
│ ├── ChangeLog.21
│ ├── ChangeLog.22
│ ├── ChangeLog.23
│ ├── ChangeLog.24
│ ├── CMakeLists.txt
│ ├── configure
│ ├── devel
│ │ ├── ft2build.h
│ │ └── ftoption.h
│ ├── docs
│ │ ├── CHANGES
│ │ ├── CMAKE
│ │ ├── CUSTOMIZE
│ │ ├── DEBUG
│ │ ├── formats.txt
│ │ ├── freetype-config.1
│ │ ├── FTL.TXT
│ │ ├── GPLv2.TXT
│ │ ├── INSTALL
│ │ ├── INSTALL.ANY
│ │ ├── INSTALL.CROSS
│ │ ├── INSTALL.GNU
│ │ ├── INSTALL.MAC
│ │ ├── INSTALL.UNIX
│ │ ├── INSTALL.VMS
│ │ ├── LICENSE.TXT
│ │ ├── MAKEPP
│ │ ├── PROBLEMS
│ │ ├── raster.txt
│ │ ├── reference
│ │ │ ├── ft2-auto_hinter.html
│ │ │ ├── ft2-base_interface.html
│ │ │ ├── ft2-basic_types.html
│ │ │ ├── ft2-bdf_fonts.html
│ │ │ ├── ft2-bitmap_handling.html
│ │ │ ├── ft2-bzip2.html
│ │ │ ├── ft2-cache_subsystem.html
│ │ │ ├── ft2-cff_driver.html
│ │ │ ├── ft2-cid_fonts.html
│ │ │ ├── ft2-computations.html
│ │ │ ├── ft2-font_formats.html
│ │ │ ├── ft2-gasp_table.html
│ │ │ ├── ft2-glyph_management.html
│ │ │ ├── ft2-glyph_stroker.html
│ │ │ ├── ft2-glyph_variants.html
│ │ │ ├── ft2-gx_validation.html
│ │ │ ├── ft2-gzip.html
│ │ │ ├── ft2-header_file_macros.html
│ │ │ ├── ft2-header_inclusion.html
│ │ │ ├── ft2-incremental.html
│ │ │ ├── ft2-index.html
│ │ │ ├── ft2-lcd_filtering.html
│ │ │ ├── ft2-list_processing.html
│ │ │ ├── ft2-lzw.html
│ │ │ ├── ft2-mac_specific.html
│ │ │ ├── ft2-module_management.html
│ │ │ ├── ft2-multiple_masters.html
│ │ │ ├── ft2-ot_validation.html
│ │ │ ├── ft2-outline_processing.html
│ │ │ ├── ft2-pfr_fonts.html
│ │ │ ├── ft2-quick_advance.html
│ │ │ ├── ft2-raster.html
│ │ │ ├── ft2-sfnt_names.html
│ │ │ ├── ft2-sizes_management.html
│ │ │ ├── ft2-system_interface.html
│ │ │ ├── ft2-toc.html
│ │ │ ├── ft2-truetype_engine.html
│ │ │ ├── ft2-truetype_tables.html
│ │ │ ├── ft2-tt_driver.html
│ │ │ ├── ft2-type1_tables.html
│ │ │ ├── ft2-user_allocation.html
│ │ │ ├── ft2-version.html
│ │ │ ├── ft2-winfnt_fonts.html
│ │ │ └── README
│ │ ├── release
│ │ ├── TODO
│ │ └── VERSION.DLL
│ ├── include
│ │ ├── config
│ │ │ ├── ftconfig.h
│ │ │ ├── ftheader.h
│ │ │ ├── ftmodule.h
│ │ │ ├── ftoption.h
│ │ │ └── ftstdlib.h
│ │ ├── freetype.h
│ │ ├── ft2build.h
│ │ ├── ftadvanc.h
│ │ ├── ftautoh.h
│ │ ├── ftbbox.h
│ │ ├── ftbdf.h
│ │ ├── ftbitmap.h
│ │ ├── ftbzip2.h
│ │ ├── ftcache.h
│ │ ├── ftcffdrv.h
│ │ ├── ftchapters.h
│ │ ├── ftcid.h
│ │ ├── fterrdef.h
│ │ ├── fterrors.h
│ │ ├── ftfntfmt.h
│ │ ├── ftgasp.h
│ │ ├── ftglyph.h
│ │ ├── ftgxval.h
│ │ ├── ftgzip.h
│ │ ├── ftimage.h
│ │ ├── ftincrem.h
│ │ ├── ftlcdfil.h
│ │ ├── ftlist.h
│ │ ├── ftlzw.h
│ │ ├── ftmac.h
│ │ ├── ftmm.h
│ │ ├── ftmodapi.h
│ │ ├── ftmoderr.h
│ │ ├── ftotval.h
│ │ ├── ftoutln.h
│ │ ├── ftpfr.h
│ │ ├── ftrender.h
│ │ ├── ftsizes.h
│ │ ├── ftsnames.h
│ │ ├── ftstroke.h
│ │ ├── ftsynth.h
│ │ ├── ftsystem.h
│ │ ├── fttrigon.h
│ │ ├── ftttdrv.h
│ │ ├── fttypes.h
│ │ ├── ftwinfnt.h
│ │ ├── internal
│ │ │ ├── autohint.h
│ │ │ ├── ftcalc.h
│ │ │ ├── ftdebug.h
│ │ │ ├── ftdriver.h
│ │ │ ├── ftgloadr.h
│ │ │ ├── ftmemory.h
│ │ │ ├── ftobjs.h
│ │ │ ├── ftpic.h
│ │ │ ├── ftrfork.h
│ │ │ ├── ftserv.h
│ │ │ ├── ftstream.h
│ │ │ ├── fttrace.h
│ │ │ ├── ftvalid.h
│ │ │ ├── internal.h
│ │ │ ├── psaux.h
│ │ │ ├── pshints.h
│ │ │ ├── services
│ │ │ │ ├── svbdf.h
│ │ │ │ ├── svcid.h
│ │ │ │ ├── svfntfmt.h
│ │ │ │ ├── svgldict.h
│ │ │ │ ├── svgxval.h
│ │ │ │ ├── svkern.h
│ │ │ │ ├── svmm.h
│ │ │ │ ├── svotval.h
│ │ │ │ ├── svpfr.h
│ │ │ │ ├── svpostnm.h
│ │ │ │ ├── svprop.h
│ │ │ │ ├── svpscmap.h
│ │ │ │ ├── svpsinfo.h
│ │ │ │ ├── svsfnt.h
│ │ │ │ ├── svttcmap.h
│ │ │ │ ├── svtteng.h
│ │ │ │ ├── svttglyf.h
│ │ │ │ └── svwinfnt.h
│ │ │ ├── sfnt.h
│ │ │ ├── t1types.h
│ │ │ └── tttypes.h
│ │ ├── t1tables.h
│ │ ├── ttnameid.h
│ │ ├── tttables.h
│ │ ├── tttags.h
│ │ └── ttunpat.h
│ ├── Jamfile
│ ├── Jamrules
│ ├── Makefile
│ ├── modules.cfg
│ ├── objs
│ │ ├── README
│ │ └── vc2010
│ │ └── Win32
│ │ ├── Debug
│ │ │ ├── autofit.obj
│ │ │ ├── bdf.obj
│ │ │ ├── cff.obj
│ │ │ ├── freetype.log
│ │ │ ├── freetype.tlog
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── freetype.lastbuildstate
│ │ │ │ ├── lib.command.1.tlog
│ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ └── Lib-link.write.1.tlog
│ │ │ ├── ftbase.obj
│ │ │ ├── ftbbox.obj
│ │ │ ├── ftbitmap.obj
│ │ │ ├── ftcache.obj
│ │ │ ├── ftdebug.obj
│ │ │ ├── ftfntfmt.obj
│ │ │ ├── ftfstype.obj
│ │ │ ├── ftgasp.obj
│ │ │ ├── ftglyph.obj
│ │ │ ├── ftgxval.obj
│ │ │ ├── ftgzip.obj
│ │ │ ├── ftinit.obj
│ │ │ ├── ftlcdfil.obj
│ │ │ ├── ftlzw.obj
│ │ │ ├── ftmm.obj
│ │ │ ├── ftotval.obj
│ │ │ ├── ftpatent.obj
│ │ │ ├── ftpfr.obj
│ │ │ ├── ftstroke.obj
│ │ │ ├── ftsynth.obj
│ │ │ ├── ftsystem.obj
│ │ │ ├── fttype1.obj
│ │ │ ├── ftwinfnt.obj
│ │ │ ├── pcf.obj
│ │ │ ├── pfr.obj
│ │ │ ├── psaux.obj
│ │ │ ├── pshinter.obj
│ │ │ ├── psmodule.obj
│ │ │ ├── raster.obj
│ │ │ ├── sfnt.obj
│ │ │ ├── smooth.obj
│ │ │ ├── truetype.obj
│ │ │ ├── type1cid.obj
│ │ │ ├── type1.obj
│ │ │ ├── type42.obj
│ │ │ └── winfnt.obj
│ │ ├── freetype26d.lib
│ │ └── freetype26d.pdb
│ ├── README
│ ├── README.git
│ ├── src
│ │ ├── autofit
│ │ │ ├── afangles.c
│ │ │ ├── afangles.h
│ │ │ ├── afblue.c
│ │ │ ├── afblue.cin
│ │ │ ├── afblue.dat
│ │ │ ├── afblue.h
│ │ │ ├── afblue.hin
│ │ │ ├── afcjk.c
│ │ │ ├── afcjk.h
│ │ │ ├── afcover.h
│ │ │ ├── afdummy.c
│ │ │ ├── afdummy.h
│ │ │ ├── aferrors.h
│ │ │ ├── afglobal.c
│ │ │ ├── afglobal.h
│ │ │ ├── afhints.c
│ │ │ ├── afhints.h
│ │ │ ├── afindic.c
│ │ │ ├── afindic.h
│ │ │ ├── aflatin2.c
│ │ │ ├── aflatin2.h
│ │ │ ├── aflatin.c
│ │ │ ├── aflatin.h
│ │ │ ├── afloader.c
│ │ │ ├── afloader.h
│ │ │ ├── afmodule.c
│ │ │ ├── afmodule.h
│ │ │ ├── afpic.c
│ │ │ ├── afpic.h
│ │ │ ├── afranges.c
│ │ │ ├── afranges.h
│ │ │ ├── afscript.h
│ │ │ ├── afstyles.h
│ │ │ ├── aftypes.h
│ │ │ ├── afwarp.c
│ │ │ ├── afwarp.h
│ │ │ ├── afwrtsys.h
│ │ │ ├── autofit.c
│ │ │ ├── hbshim.c
│ │ │ ├── hbshim.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ └── rules.mk
│ │ ├── base
│ │ │ ├── basepic.c
│ │ │ ├── basepic.h
│ │ │ ├── ftadvanc.c
│ │ │ ├── ftapi.c
│ │ │ ├── ftbase.c
│ │ │ ├── ftbase.h
│ │ │ ├── ftbbox.c
│ │ │ ├── ftbdf.c
│ │ │ ├── ftbitmap.c
│ │ │ ├── ftcalc.c
│ │ │ ├── ftcid.c
│ │ │ ├── ftdbgmem.c
│ │ │ ├── ftdebug.c
│ │ │ ├── ftfntfmt.c
│ │ │ ├── ftfstype.c
│ │ │ ├── ftgasp.c
│ │ │ ├── ftgloadr.c
│ │ │ ├── ftglyph.c
│ │ │ ├── ftgxval.c
│ │ │ ├── ftinit.c
│ │ │ ├── ftlcdfil.c
│ │ │ ├── ftmac.c
│ │ │ ├── ftmm.c
│ │ │ ├── ftobjs.c
│ │ │ ├── ftotval.c
│ │ │ ├── ftoutln.c
│ │ │ ├── ftpatent.c
│ │ │ ├── ftpfr.c
│ │ │ ├── ftpic.c
│ │ │ ├── ftrfork.c
│ │ │ ├── ftsnames.c
│ │ │ ├── ftstream.c
│ │ │ ├── ftstroke.c
│ │ │ ├── ftsynth.c
│ │ │ ├── ftsystem.c
│ │ │ ├── fttrigon.c
│ │ │ ├── fttype1.c
│ │ │ ├── ftutil.c
│ │ │ ├── ftwinfnt.c
│ │ │ ├── Jamfile
│ │ │ ├── md5.c
│ │ │ ├── md5.h
│ │ │ └── rules.mk
│ │ ├── bdf
│ │ │ ├── bdf.c
│ │ │ ├── bdfdrivr.c
│ │ │ ├── bdfdrivr.h
│ │ │ ├── bdferror.h
│ │ │ ├── bdf.h
│ │ │ ├── bdflib.c
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── bzip2
│ │ │ ├── ftbzip2.c
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── cache
│ │ │ ├── ftcache.c
│ │ │ ├── ftcbasic.c
│ │ │ ├── ftccache.c
│ │ │ ├── ftccache.h
│ │ │ ├── ftccback.h
│ │ │ ├── ftccmap.c
│ │ │ ├── ftcerror.h
│ │ │ ├── ftcglyph.c
│ │ │ ├── ftcglyph.h
│ │ │ ├── ftcimage.c
│ │ │ ├── ftcimage.h
│ │ │ ├── ftcmanag.c
│ │ │ ├── ftcmanag.h
│ │ │ ├── ftcmru.c
│ │ │ ├── ftcmru.h
│ │ │ ├── ftcsbits.c
│ │ │ ├── ftcsbits.h
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── cff
│ │ │ ├── cf2arrst.c
│ │ │ ├── cf2arrst.h
│ │ │ ├── cf2blues.c
│ │ │ ├── cf2blues.h
│ │ │ ├── cf2error.c
│ │ │ ├── cf2error.h
│ │ │ ├── cf2fixed.h
│ │ │ ├── cf2font.c
│ │ │ ├── cf2font.h
│ │ │ ├── cf2ft.c
│ │ │ ├── cf2ft.h
│ │ │ ├── cf2glue.h
│ │ │ ├── cf2hints.c
│ │ │ ├── cf2hints.h
│ │ │ ├── cf2intrp.c
│ │ │ ├── cf2intrp.h
│ │ │ ├── cf2read.c
│ │ │ ├── cf2read.h
│ │ │ ├── cf2stack.c
│ │ │ ├── cf2stack.h
│ │ │ ├── cf2types.h
│ │ │ ├── cff.c
│ │ │ ├── cffcmap.c
│ │ │ ├── cffcmap.h
│ │ │ ├── cffdrivr.c
│ │ │ ├── cffdrivr.h
│ │ │ ├── cfferrs.h
│ │ │ ├── cffgload.c
│ │ │ ├── cffgload.h
│ │ │ ├── cffload.c
│ │ │ ├── cffload.h
│ │ │ ├── cffobjs.c
│ │ │ ├── cffobjs.h
│ │ │ ├── cffparse.c
│ │ │ ├── cffparse.h
│ │ │ ├── cffpic.c
│ │ │ ├── cffpic.h
│ │ │ ├── cfftoken.h
│ │ │ ├── cfftypes.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ └── rules.mk
│ │ ├── cid
│ │ │ ├── ciderrs.h
│ │ │ ├── cidgload.c
│ │ │ ├── cidgload.h
│ │ │ ├── cidload.c
│ │ │ ├── cidload.h
│ │ │ ├── cidobjs.c
│ │ │ ├── cidobjs.h
│ │ │ ├── cidparse.c
│ │ │ ├── cidparse.h
│ │ │ ├── cidriver.c
│ │ │ ├── cidriver.h
│ │ │ ├── cidtoken.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ └── type1cid.c
│ │ ├── gxvalid
│ │ │ ├── gxvalid.c
│ │ │ ├── gxvalid.h
│ │ │ ├── gxvbsln.c
│ │ │ ├── gxvcommn.c
│ │ │ ├── gxvcommn.h
│ │ │ ├── gxverror.h
│ │ │ ├── gxvfeat.c
│ │ │ ├── gxvfeat.h
│ │ │ ├── gxvfgen.c
│ │ │ ├── gxvjust.c
│ │ │ ├── gxvkern.c
│ │ │ ├── gxvlcar.c
│ │ │ ├── gxvmod.c
│ │ │ ├── gxvmod.h
│ │ │ ├── gxvmort0.c
│ │ │ ├── gxvmort1.c
│ │ │ ├── gxvmort2.c
│ │ │ ├── gxvmort4.c
│ │ │ ├── gxvmort5.c
│ │ │ ├── gxvmort.c
│ │ │ ├── gxvmort.h
│ │ │ ├── gxvmorx0.c
│ │ │ ├── gxvmorx1.c
│ │ │ ├── gxvmorx2.c
│ │ │ ├── gxvmorx4.c
│ │ │ ├── gxvmorx5.c
│ │ │ ├── gxvmorx.c
│ │ │ ├── gxvmorx.h
│ │ │ ├── gxvopbd.c
│ │ │ ├── gxvprop.c
│ │ │ ├── gxvtrak.c
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── gzip
│ │ │ ├── adler32.c
│ │ │ ├── ftgzip.c
│ │ │ ├── infblock.c
│ │ │ ├── infblock.h
│ │ │ ├── infcodes.c
│ │ │ ├── infcodes.h
│ │ │ ├── inffixed.h
│ │ │ ├── inflate.c
│ │ │ ├── inftrees.c
│ │ │ ├── inftrees.h
│ │ │ ├── infutil.c
│ │ │ ├── infutil.h
│ │ │ ├── Jamfile
│ │ │ ├── rules.mk
│ │ │ ├── zconf.h
│ │ │ ├── zlib.h
│ │ │ ├── zutil.c
│ │ │ └── zutil.h
│ │ ├── Jamfile
│ │ ├── lzw
│ │ │ ├── ftlzw.c
│ │ │ ├── ftzopen.c
│ │ │ ├── ftzopen.h
│ │ │ ├── Jamfile
│ │ │ └── rules.mk
│ │ ├── otvalid
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── otvalid.c
│ │ │ ├── otvalid.h
│ │ │ ├── otvbase.c
│ │ │ ├── otvcommn.c
│ │ │ ├── otvcommn.h
│ │ │ ├── otverror.h
│ │ │ ├── otvgdef.c
│ │ │ ├── otvgpos.c
│ │ │ ├── otvgpos.h
│ │ │ ├── otvgsub.c
│ │ │ ├── otvjstf.c
│ │ │ ├── otvmath.c
│ │ │ ├── otvmod.c
│ │ │ ├── otvmod.h
│ │ │ └── rules.mk
│ │ ├── pcf
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pcf.c
│ │ │ ├── pcfdrivr.c
│ │ │ ├── pcfdrivr.h
│ │ │ ├── pcferror.h
│ │ │ ├── pcf.h
│ │ │ ├── pcfread.c
│ │ │ ├── pcfread.h
│ │ │ ├── pcfutil.c
│ │ │ ├── pcfutil.h
│ │ │ ├── README
│ │ │ └── rules.mk
│ │ ├── pfr
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pfr.c
│ │ │ ├── pfrcmap.c
│ │ │ ├── pfrcmap.h
│ │ │ ├── pfrdrivr.c
│ │ │ ├── pfrdrivr.h
│ │ │ ├── pfrerror.h
│ │ │ ├── pfrgload.c
│ │ │ ├── pfrgload.h
│ │ │ ├── pfrload.c
│ │ │ ├── pfrload.h
│ │ │ ├── pfrobjs.c
│ │ │ ├── pfrobjs.h
│ │ │ ├── pfrsbit.c
│ │ │ ├── pfrsbit.h
│ │ │ ├── pfrtypes.h
│ │ │ └── rules.mk
│ │ ├── psaux
│ │ │ ├── afmparse.c
│ │ │ ├── afmparse.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── psaux.c
│ │ │ ├── psauxerr.h
│ │ │ ├── psauxmod.c
│ │ │ ├── psauxmod.h
│ │ │ ├── psconv.c
│ │ │ ├── psconv.h
│ │ │ ├── psobjs.c
│ │ │ ├── psobjs.h
│ │ │ ├── rules.mk
│ │ │ ├── t1cmap.c
│ │ │ ├── t1cmap.h
│ │ │ ├── t1decode.c
│ │ │ └── t1decode.h
│ │ ├── pshinter
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pshalgo.c
│ │ │ ├── pshalgo.h
│ │ │ ├── pshglob.c
│ │ │ ├── pshglob.h
│ │ │ ├── pshinter.c
│ │ │ ├── pshmod.c
│ │ │ ├── pshmod.h
│ │ │ ├── pshnterr.h
│ │ │ ├── pshpic.c
│ │ │ ├── pshpic.h
│ │ │ ├── pshrec.c
│ │ │ ├── pshrec.h
│ │ │ └── rules.mk
│ │ ├── psnames
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── psmodule.c
│ │ │ ├── psmodule.h
│ │ │ ├── psnamerr.h
│ │ │ ├── psnames.c
│ │ │ ├── pspic.c
│ │ │ ├── pspic.h
│ │ │ ├── pstables.h
│ │ │ └── rules.mk
│ │ ├── raster
│ │ │ ├── ftmisc.h
│ │ │ ├── ftraster.c
│ │ │ ├── ftraster.h
│ │ │ ├── ftrend1.c
│ │ │ ├── ftrend1.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── raster.c
│ │ │ ├── rasterrs.h
│ │ │ ├── rastpic.c
│ │ │ ├── rastpic.h
│ │ │ └── rules.mk
│ │ ├── sfnt
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── pngshim.c
│ │ │ ├── pngshim.h
│ │ │ ├── rules.mk
│ │ │ ├── sfdriver.c
│ │ │ ├── sfdriver.h
│ │ │ ├── sferrors.h
│ │ │ ├── sfnt.c
│ │ │ ├── sfntpic.c
│ │ │ ├── sfntpic.h
│ │ │ ├── sfobjs.c
│ │ │ ├── sfobjs.h
│ │ │ ├── ttbdf.c
│ │ │ ├── ttbdf.h
│ │ │ ├── ttcmap.c
│ │ │ ├── ttcmapc.h
│ │ │ ├── ttcmap.h
│ │ │ ├── ttkern.c
│ │ │ ├── ttkern.h
│ │ │ ├── ttload.c
│ │ │ ├── ttload.h
│ │ │ ├── ttmtx.c
│ │ │ ├── ttmtx.h
│ │ │ ├── ttpost.c
│ │ │ ├── ttpost.h
│ │ │ ├── ttsbit.c
│ │ │ └── ttsbit.h
│ │ ├── smooth
│ │ │ ├── ftgrays.c
│ │ │ ├── ftgrays.h
│ │ │ ├── ftsmerrs.h
│ │ │ ├── ftsmooth.c
│ │ │ ├── ftsmooth.h
│ │ │ ├── ftspic.c
│ │ │ ├── ftspic.h
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ └── smooth.c
│ │ ├── tools
│ │ │ ├── afblue.pl
│ │ │ ├── apinames.c
│ │ │ ├── chktrcmp.py
│ │ │ ├── cordic.py
│ │ │ ├── docmaker
│ │ │ │ ├── content.py
│ │ │ │ ├── docbeauty.py
│ │ │ │ ├── docmaker.py
│ │ │ │ ├── formatter.py
│ │ │ │ ├── sources.py
│ │ │ │ ├── tohtml.py
│ │ │ │ └── utils.py
│ │ │ ├── ftrandom
│ │ │ │ ├── ftrandom.c
│ │ │ │ ├── Makefile
│ │ │ │ └── README
│ │ │ ├── glnames.py
│ │ │ ├── Jamfile
│ │ │ ├── no-copyright
│ │ │ ├── test_afm.c
│ │ │ ├── test_bbox.c
│ │ │ ├── test_trig.c
│ │ │ ├── update-copyright
│ │ │ └── update-copyright-year
│ │ ├── truetype
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── truetype.c
│ │ │ ├── ttdriver.c
│ │ │ ├── ttdriver.h
│ │ │ ├── tterrors.h
│ │ │ ├── ttgload.c
│ │ │ ├── ttgload.h
│ │ │ ├── ttgxvar.c
│ │ │ ├── ttgxvar.h
│ │ │ ├── ttinterp.c
│ │ │ ├── ttinterp.h
│ │ │ ├── ttobjs.c
│ │ │ ├── ttobjs.h
│ │ │ ├── ttpic.c
│ │ │ ├── ttpic.h
│ │ │ ├── ttpload.c
│ │ │ ├── ttpload.h
│ │ │ ├── ttsubpix.c
│ │ │ └── ttsubpix.h
│ │ ├── type1
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── t1afm.c
│ │ │ ├── t1afm.h
│ │ │ ├── t1driver.c
│ │ │ ├── t1driver.h
│ │ │ ├── t1errors.h
│ │ │ ├── t1gload.c
│ │ │ ├── t1gload.h
│ │ │ ├── t1load.c
│ │ │ ├── t1load.h
│ │ │ ├── t1objs.c
│ │ │ ├── t1objs.h
│ │ │ ├── t1parse.c
│ │ │ ├── t1parse.h
│ │ │ ├── t1tokens.h
│ │ │ └── type1.c
│ │ ├── type42
│ │ │ ├── Jamfile
│ │ │ ├── module.mk
│ │ │ ├── rules.mk
│ │ │ ├── t42drivr.c
│ │ │ ├── t42drivr.h
│ │ │ ├── t42error.h
│ │ │ ├── t42objs.c
│ │ │ ├── t42objs.h
│ │ │ ├── t42parse.c
│ │ │ ├── t42parse.h
│ │ │ ├── t42types.h
│ │ │ └── type42.c
│ │ └── winfonts
│ │ ├── fnterrs.h
│ │ ├── Jamfile
│ │ ├── module.mk
│ │ ├── rules.mk
│ │ ├── winfnt.c
│ │ └── winfnt.h
│ ├── version.sed
│ └── vms_make.com
├── libFreeType.pro
└── libFreeType.pro.user
70 directories, 857 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论