• 大小: 3.97MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-02
  • 语言: C/C++
  • 标签: MFC  图片显示  

资源简介

改代码是基于MFC编写的图片浏览器,可以打开任意格式图片,并且有放大缩小,旋转等等功能,是MFC读取,显示图片的好例程

资源截图

代码片段和文件信息

// LoadPic.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “LoadPic.h“

#include “MainFrm.h“
#include “LoadPicDoc.h“
#include “LoadPicView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CLoadPicApp

BEGIN_MESSAGE_MAP(CLoadPicApp CWinApp)
//{{AFX_MSG_MAP(CLoadPicApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLoadPicApp construction

CLoadPicApp::CLoadPicApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CLoadPicApp object

CLoadPicApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CLoadPicApp initialization

BOOL CLoadPicApp::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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CLoadPicDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CLoadPicView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    5399552  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPic.bsc

     文件     131146  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPic.exe

     文件     369016  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPic.ilk

     文件      28143  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPic.obj

     文件    6875776  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPic.pch

     文件     467968  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPic.pdb

     文件       7000  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPic.res

     文件          0  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPic.sbr

     文件      15318  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPicDoc.obj

     文件          0  2011-02-24 09:29  MFC图片浏览器\Debug\LoadPicDoc.sbr

     文件      39949  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPicView.obj

     文件          0  2013-03-04 11:04  MFC图片浏览器\Debug\LoadPicView.sbr

     文件      19597  2011-02-24 09:29  MFC图片浏览器\Debug\MainFrm.obj

     文件          0  2011-02-24 09:29  MFC图片浏览器\Debug\MainFrm.sbr

     文件      28799  2011-02-24 09:29  MFC图片浏览器\Debug\Picture.obj

     文件          0  2011-02-24 09:29  MFC图片浏览器\Debug\Picture.sbr

     文件     105328  2011-02-24 09:29  MFC图片浏览器\Debug\StdAfx.obj

     文件    1366493  2011-02-24 09:29  MFC图片浏览器\Debug\StdAfx.sbr

     文件     246784  2013-03-04 11:05  MFC图片浏览器\Debug\vc60.idb

     文件     397312  2013-03-04 11:04  MFC图片浏览器\Debug\vc60.pdb

     文件      28436  2013-03-04 11:05  MFC图片浏览器\LoadPic.aps

     文件       2017  2013-03-04 11:11  MFC图片浏览器\LoadPic.clw

     文件       4227  2011-02-20 12:40  MFC图片浏览器\LoadPic.cpp

     文件       4703  2011-02-21 09:57  MFC图片浏览器\LoadPic.dsp

     文件        522  2011-02-20 12:40  MFC图片浏览器\LoadPic.dsw

     文件       1367  2011-02-20 12:40  MFC图片浏览器\LoadPic.h

     文件     123904  2013-03-04 11:12  MFC图片浏览器\LoadPic.ncb

     文件      55808  2013-03-04 11:12  MFC图片浏览器\LoadPic.opt

     文件        248  2013-03-04 11:04  MFC图片浏览器\LoadPic.plg

     文件      10964  2011-02-23 13:56  MFC图片浏览器\LoadPic.rc

............此处省略23个文件信息

评论

共有 条评论