资源简介
基于C++MFC的字体提取,在计算机中TTF字体的轮廓线提取。
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
// Donwload by http://www.codefans.net
#include “stdafx.h“
#include “UVectorFont.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
90547 27
相关资源
- opencv提取图片中人轮廓
- JPEG图片EXIF信息提取及缩略图显示VC
- 使用RANSAC提取平面
- C++代码提取LBP特征
- 语音信号处理- MFCC特征提取
- 通过MFC和OpenGL实现点云数据的提取和
- 字形轮廓提取显示C#源码
- LSD直线提取算法Opencv
- 轮廓提取的算法原理和代码C++实现
- CQCC、LPCC、MFCC和PLP的matlab程序.rar
- 用Canny算子提取边缘Visual C++源代码
- oled字模提取软件
- C++实战源码-提取图片中的对象
- C++实战源码-提取并保存应用程序图标
- C++ 提取并保存应用程序图标
- 提取特定目录下特定文件类型的至一
- c++ SQL数据库结构提取器模块源码
- C++ 提取Word文档目录
- C++ 定时提取网页源码
- 提取应用程序ICON图标(得到exe图标并
- VC++实现GPS数据采集与提取的软件编程
- 基于c+++Opencv的图像边缘提取及拟合
- OpenCV手势识别-手掌特征提取
- 点云圆柱提取代码
- 提取、替换RPG游戏中图片的工具——
- 视频帧提取。bmp位图合成为avi视频
- 基于opencv3.2+VS2015的多目标检测跟踪与
- C语言 点特征提取
评论
共有 条评论