嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 1 元微信扫码支付:1 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
调整BDF点阵字库位置
FONTTOOL
├── Bin
│ ├── Arab.ini
│ ├── Bengali.ini
│ ├── Devanagari.ini
│ ├── FontTool.ini
│ ├── Greek.ini
│ ├── Gujarati.ini
│ ├── Han_big5.ini
│ ├── Han_gb18030.ini
│ ├── Han_gb2312.ini
│ ├── Han_gbk.ini
│ ├── Hebrew.ini
│ ├── Kannada.ini
│ ├── Latin.ini
│ ├── Malayalam.ini
│ ├── Oriya.ini
│ ├── Pluto.ini
│ ├── Punjabi.ini
│ ├── Russian.ini
│ ├── Tamil.ini
│ ├── Telugu.ini
│ └── Thai.ini
├── Doc
│ ├── FontTool User Guide (en).doc
│ └── FontTool User Guide (zh).doc
├── FontTool_ReleaseNotes.xls
└── Source
├── FontTool.dsw
├── Include
│ ├── Global.h
│ ├── UC2BIG5CodeMap.h
│ ├── UC2GBCodeMap.h
│ ├── config.h
│ ├── freetype
│ │ ├── config
│ │ │ ├── ftconfig.h
│ │ │ ├── ftheader.h
│ │ │ ├── ftmodule.h
│ │ │ ├── ftoption.h
│ │ │ └── ftstdlib.h
│ │ ├── freetype.h
│ │ ├── ftadvanc.h
│ │ ├── ftbbox.h
│ │ ├── ftbdf.h
│ │ ├── ftbitmap.h
│ │ ├── ftcache.h
│ │ ├── ftchapters.h
│ │ ├── ftcid.h
│ │ ├── fterrdef.h
│ │ ├── fterrors.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
│ │ ├── fttypes.h
│ │ ├── ftwinfnt.h
│ │ ├── ftxf86.h
│ │ ├── internal
│ │ │ ├── autohint.h
│ │ │ ├── ftcalc.h
│ │ │ ├── ftdebug.h
│ │ │ ├── ftdriver.h
│ │ │ ├── ftgloadr.h
│ │ │ ├── ftmemory.h
│ │ │ ├── ftobjs.h
│ │ │ ├── ftrfork.h
│ │ │ ├── ftserv.h
│ │ │ ├── ftstream.h
│ │ │ ├── fttrace.h
│ │ │ ├── ftvalid.h
│ │ │ ├── internal.h
│ │ │ ├── pcftypes.h
│ │ │ ├── psaux.h
│ │ │ ├── pshints.h
│ │ │ ├── services
│ │ │ │ ├── svbdf.h
│ │ │ │ ├── svcid.h
│ │ │ │ ├── svgldict.h
│ │ │ │ ├── svgxval.h
│ │ │ │ ├── svkern.h
│ │ │ │ ├── svmm.h
│ │ │ │ ├── svotval.h
│ │ │ │ ├── svpfr.h
│ │ │ │ ├── svpostnm.h
│ │ │ │ ├── svpscmap.h
│ │ │ │ ├── svpsinfo.h
│ │ │ │ ├── svsfnt.h
│ │ │ │ ├── svttcmap.h
│ │ │ │ ├── svtteng.h
│ │ │ │ ├── svttglyf.h
│ │ │ │ ├── svwinfnt.h
│ │ │ │ └── svxf86nm.h
│ │ │ ├── sfnt.h
│ │ │ ├── t1types.h
│ │ │ └── tttypes.h
│ │ ├── t1tables.h
│ │ ├── ttnameid.h
│ │ ├── tttables.h
│ │ ├── tttags.h
│ │ └── ttunpat.h
│ ├── ft2build.h
│ ├── otf.h
│ ├── otferror.h
│ ├── spml_def.h
│ ├── spml_outline.h
│ └── spml_xapi.h
├── Main
│ ├── ColorStatic.cpp
│ ├── ColorStatic.h
│ ├── CoolButton.cpp
│ ├── CoolButton.h
│ ├── CoolListCtrl.cpp
│ ├── CoolListCtrl.h
│ ├── CoolStatic.cpp
│ ├── CoolStatic.h
│ ├── DlgAdjustParam.cpp
│ ├── DlgAdjustParam.h
│ ├── DlgAdvSetting.cpp
│ ├── DlgAdvSetting.h
│ ├── DlgOTFSeting.cpp
│ ├── DlgOTFSeting.h
│ ├── EditFontDlg.cpp
│ ├── EditFontDlg.h
│ ├── EdtBtnCtrl.cpp
│ ├── EdtBtnCtrl.h
│ ├── FontTool.cpp
│ ├── FontTool.dsp
│ ├── FontTool.h
│ ├── FontTool.rc
│ ├── FontToolDlg.cpp
│ ├── FontToolDlg.h
│ ├── Font_Interface.cpp
│ ├── Font_Interface.h
│ ├── GlyphData.cpp
│ ├── GlyphData.h
│ ├── Resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ ├── XAboutDlg.cpp
│ ├── XAboutDlg.h
│ └── res
│ ├── FontTool.ico
│ ├── FontTool.rc2
│ ├── bitmap_pen.bmp
│ ├── bmp_erase.bmp
│ ├── bmp_select.bmp
│ ├── bmp_undo.bmp
│ ├── checkboxes.bmp
│ ├── cursor_e.cur
│ └── cursor_p.cur
└── lib
├── freetype.lib
├── freetyped.lib
├── spml.lib
└── spmld.lib
11 directories, 163 files