资源简介
字库生成工具 :
1.生成某种编码的全部点阵,以BIN的形式放在FLASH中加载。
2.生成部份文字的点阵,以C文件的方式,写在代码里。
代码片段和文件信息
// AboutBox.cpp : 实现文件
//
#include “stdafx.h“
#include “FontMaker.h“
#include “AboutBox.h“
// CAboutBox 对话框
IMPLEMENT_DYNAMIC(CAboutBox CDialog)
CAboutBox::CAboutBox(CWnd* pParent /*=NULL*/)
: CDialog(CAboutBox::IDD pParent)
{
}
CAboutBox::~CAboutBox()
{
}
void CAboutBox::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutBox CDialog)
END_MESSAGE_MAP()
// CAboutBox 消息处理程序
static WCHAR szLicense[]=
{
L“本软件是免费软件,你可以随意使用和传播本软件.\r\n“
};
static WCHAR szVersion[]=
{
L“软件名称: 通用点阵提取工具\r\n“
L“软件版本: 1.1.2\r\n“
L“编译日期: 2017.10.12\r\n“
L“软件作者: 星沉地动\r\n“
L“联系方式: 446252221@qq.com\r\n“
};
BOOL CAboutBox::OnInitDialog()
{
CDialog::OnInitDialog();
SetDlgItemText(IDC_EDIT1szVersion);
SetDlgItemText(IDC_EDIT2szLicense);
return TRUE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-10-12 03:18 FontMaker-master\
文件 919 2017-10-12 03:18 FontMaker-master\AboutBox.cpp
文件 394 2017-10-12 03:18 FontMaker-master\AboutBox.h
文件 4632 2017-10-12 03:18 FontMaker-master\BitFont.cpp
文件 683 2017-10-12 03:18 FontMaker-master\BitFont.h
文件 1091 2017-10-12 03:18 FontMaker-master\Charset.cpp
文件 278 2017-10-12 03:18 FontMaker-master\Charset.h
文件 1067 2017-10-12 03:18 FontMaker-master\Draw.cpp
文件 399 2017-10-12 03:18 FontMaker-master\Draw.h
文件 3905 2017-10-12 03:18 FontMaker-master\EditBox.cpp
文件 627 2017-10-12 03:18 FontMaker-master\EditBox.h
文件 1215 2017-10-12 03:18 FontMaker-master\FontMaker.cpp
文件 558 2017-10-12 03:18 FontMaker-master\FontMaker.h
文件 9638 2017-10-12 03:18 FontMaker-master\FontMaker.rc
文件 882 2017-10-12 03:18 FontMaker-master\FontMaker.sln
文件 6115 2017-10-12 03:18 FontMaker-master\FontMaker.vcproj
文件 12694 2017-10-12 03:18 FontMaker-master\FontMakerDlg.cpp
文件 2059 2017-10-12 03:18 FontMaker-master\FontMakerDlg.h
文件 370 2017-10-12 03:18 FontMaker-master\README.md
目录 0 2017-10-12 03:18 FontMaker-master\res\
文件 21630 2017-10-12 03:18 FontMaker-master\res\FontMaker.ico
文件 365 2017-10-12 03:18 FontMaker-master\res\FontMaker.rc2
文件 28854 2017-10-12 03:18 FontMaker-master\res\logo.bmp
文件 2425 2017-10-12 03:18 FontMaker-master\resource.h
文件 140 2017-10-12 03:18 FontMaker-master\stdafx.cpp
文件 2444 2017-10-12 03:18 FontMaker-master\stdafx.h
- 上一篇:word/doc文档合并器能自己添加文件名
- 下一篇:83编码器的VHDL
评论
共有 条评论