资源简介
C++ MFC 放大和缩小图片源码,您可以使用它学习图片的存储和现实,还有就是将图片按原来大小的多少比例显示。
代码片段和文件信息
// Picture.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Picture.h“
#include “PictureDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPictureApp
BEGIN_MESSAGE_MAP(CPictureApp CWinApp)
//{{AFX_MSG_MAP(CPictureApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPictureApp construction
CPictureApp::CPictureApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CPictureApp object
CPictureApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CPictureApp initialization
BOOL CPictureApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CPictureDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-07-10 09:43 113\
目录 0 2011-05-28 22:38 113\picture\
目录 0 2011-05-31 17:02 113\picture\Debug\
文件 240712 2011-05-28 21:20 113\picture\Picture.aps
文件 1287 2011-05-28 22:38 113\picture\Picture.clw
文件 2077 2007-05-08 08:48 113\picture\Picture.cpp
文件 4242 2007-05-08 08:48 113\picture\Picture.dsp
文件 537 2007-05-08 08:48 113\picture\Picture.dsw
文件 1335 2007-05-08 08:48 113\picture\Picture.h
文件 50176 2011-05-28 22:38 113\picture\Picture.ncb
文件 652288 2011-05-28 22:38 113\picture\Picture.opt
文件 248 2011-05-28 22:32 113\picture\Picture.plg
文件 5784 2011-05-28 21:20 113\picture\Picture.rc
文件 6426 2011-05-28 21:53 113\picture\PictureDlg.cpp
文件 1506 2007-09-05 08:58 113\picture\PictureDlg.h
文件 3597 2007-05-08 08:48 113\picture\ReadMe.txt
目录 0 2009-07-10 09:43 113\picture\res\
文件 960 2011-05-28 21:20 113\picture\resource.h
文件 1078 2007-05-08 08:48 113\picture\res\Picture.ico
文件 399 2007-05-08 08:48 113\picture\res\Picture.rc2
文件 204360 2007-05-08 08:48 113\picture\res\车.bmp
文件 209 2007-05-08 08:48 113\picture\StdAfx.cpp
文件 1054 2007-05-08 08:48 113\picture\StdAfx.h
相关资源
- 武汉大学测绘学院大地测量学编程-
- SQlite3库及头文件在VS2010中MFC使用成功
- N皇后问题构造性方法与启发式修补的
- OLE操作word和excel
- 类似QQ登陆界面c++builder
- mfc邮箱地址管理系统(c++access)
- 解决无法删除microsoft visual c++运行库问
- 酒店管理系统C++源码
- 一个c++实现的哈希表类
- 混合基快速傅里叶变换(2FFT+4fft)优
- LEACH算法源代码_C++代码
- C++简单的飞行射击游戏源码
- LZW压缩算法C++源码
- MFC下获取字符的点阵字模数据并显示
- 数据结构中用栈实现迷宫问题的c++代
- C++矩阵计算类
- OpenGL+MFC+点云
- c++实现的单链表
- c++写的时间类
- c++网络编程之服务端
- c++实现的D算法的F算法
- c++三目运算符
- 谭浩强c++第二章习题源码
- 谭浩强c++课本第一章习题源代码
- 谭浩强c++课本第一章例题源码
- c++统计输入中每个值出现多少次
- c++实现的长方体类
- c++11多线程库之线程库使用
- c++11多线程库之互斥库使用
- MFC下配置opengl环境具体步骤
评论
共有 条评论