资源简介
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
相关资源
- OPENGL 星空 背景 图像
- 04_图像编辑器实现.zip
- 用VC++显示图像的灰度直方图
- 使用c语言实现基于图的图像分割代码
- c++builder做图像处理项目的核心代码
- 图像连续拼接算法源码
- RAW格式图像转换为BMP格式
- 三维图像区域生长
- 自适应图像增强完整OpenCV代码
- MSR retinex图像增强处理
- 基于暗通道和导向滤波的图像去雾算
- DICOM医学图像格式转换的C++实现
- 亚像素模板匹配—计算图像之间的亚
- 双目保存图片一根线输出两幅图像
- C语言 小波变换 图像 去噪 源代码
- 数字图像处理 印前输出 rip 数字加
- 图像分割 grabcut C++版本的源码,包含
- 图像处理算法源代码,用C语言完成
- 图像抖动的块匹配及补偿算法
- VC/VC++ 动态加载Gif动画
- 图像相似度比较
- MFC图像处理 反色和红色
- 图像处理软件系统visual c++
- C++图像二值化代码
- C/C++语言图像处理:各种滤波
- 基于MFC的图像处理
- 图片浏览器实现和图像编辑器实现源
- Visio图像
- c++视频教程opencv视频图像处理机器视
- Visual C++数字图像模式识别典型案例详
评论
共有 条评论