资源简介
C++ 实现显示GIF图片!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

代码片段和文件信息
// showgif.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “showgif.h“
#include “showgifDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CShowgifApp
BEGIN_MESSAGE_MAP(CShowgifApp CWinApp)
//{{AFX_MSG_MAP(CShowgifApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CShowgifApp construction
CShowgifApp::CShowgifApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CShowgifApp object
CShowgifApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CShowgifApp initialization
BOOL CShowgifApp::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
CShowgifDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3597 2008-11-14 13:52 showgif\ReadMe.txt
文件 145760 2008-11-14 13:54 showgif\res\1.gif
文件 1078 2008-11-14 13:52 showgif\res\showgif.ico
文件 399 2008-11-14 13:52 showgif\res\showgif.rc2
文件 684 2008-11-14 13:54 showgif\resource.h
文件 166608 2008-11-14 19:37 showgif\showgif.aps
文件 1061 2008-11-14 20:58 showgif\showgif.clw
文件 2077 2008-11-14 13:52 showgif\showgif.cpp
文件 4239 2008-11-14 14:06 showgif\showgif.dsp
文件 522 2008-11-14 13:52 showgif\showgif.dsw
文件 1335 2008-11-14 13:52 showgif\showgif.h
文件 58368 2008-11-14 20:58 showgif\showgif.ncb
文件 248 2008-11-14 20:25 showgif\showgif.plg
文件 5357 2008-11-14 13:54 showgif\showgif.rc
文件 7849 2008-11-14 14:02 showgif\showgifDlg.cpp
文件 1649 2008-11-14 14:06 showgif\showgifDlg.h
文件 209 2008-11-14 13:52 showgif\StdAfx.cpp
文件 1054 2008-11-14 13:52 showgif\StdAfx.h
文件 48640 2008-11-14 20:58 showgif\showgif.opt
目录 0 2008-11-14 13:54 showgif\res
目录 0 2008-11-14 14:08 showgif
----------- --------- ---------- ----- ----
450734 21
相关资源
- 用C语言进行数字图像处理
- 基于esp32的摄像头采集图像代码
- basler相机图像采集和显示
- opencv图片扫描以及校正
- 图像预处理五种滤波
- 基于opencv漫水填充算法综合
- 基于改进的fcm算法的图像分割vc++
- 利用C++类实现PNG图像读写及显示
- Visual+C++数字图像处理-谢凤英-源代码
- 基于图割的图像分割OpenCV+MFC实现
- Bmp图像处理.zip
- VC++数字图像处理典型算法及实现
- 基于MFC的图像的拼接系统
- Visual C++数字图像实用工程案例精选源
- MFC VC++实现Sierpinski分形图像
- VC6.0 完整的图像处理程序 运用了大量
- VC图像处理-用Canny算子提取边缘
- 基于图像的二代身份证识别
- 数字图像处理扑克牌识别程序
- 数字图像处理与机器视觉——Visual
- 基于leapmotion的HMM手势识别
- C++ 图像处理283241
- C++图像伪彩色处理源代码
- C++数字水印完整系统参考
- 图像处理方面学习的好MFC显示直方图
- Visual C++.NET图像处理编程源代码 陆宗
- 使用c++读取图像到二维矩阵
- 中值滤波_均值滤波c语言实现_工程文
- 直方图均衡化_c语言实现_源代码+实验
- (VC++ 数字图像处理典型算法及实现源
评论
共有 条评论