资源简介
动态加载GIF动画 VC 实现
include "stdafx.h"
#include "TransparentGif.h"
#include "TransparentGifDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CTransparentGifApp
BEGIN_MESSAGE_MAP(CTransparentGifApp, CWinAppEx)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CTransparentGifApp 构造
CTransparentGifApp::CTransparentGifApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CTransparentGifApp 对象
CTransparentGifApp theApp;
// CTransparentGifApp 初始化
BOOL CTransparentGifApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinAppEx::InitInstance();
AfxEnableControlContainer();
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
CTransparentGifDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
代码片段和文件信息
//////////////////////////////////////////////////////////////////////
// PictureEx.cpp: implementation of the CPictureEx class.
//
// Picture displaying control with support for the following formats:
// GIF (including animated GIF87a and GIF89a) JPEG BMP WMF ICO CUR
//
// Written by Oleg Bykov (oleg_bykoff@rsdn.ru)
// Copyright (c) 2001
//
// To use CPictureEx follow these steps:
// - place a static control on your dialog (either a text or a bitmap)
// - change its identifier to something else (e.g. IDC_MYPIC)
// - associate a CStatic with it using ClassWizard
// - in your dialog‘s header file replace CStatic with CPictureEx
// (don‘t forget to #include “PictureEx.h“ and add
// PictureEx.h and PictureEx.cpp to your project)
// - call one of the overloaded CPictureEx::Load() functions somewhere
// (OnInitDialog is a good place to start)
// - if the preceding Load() succeeded call Draw()
//
// You can also add the control by defining a member variable of type
// CPictureEx calling CPictureEx::Create (derived from CStatic) then
// CPictureEx::Load and CPictureEx::Draw.
//
// By default the control initializes its background to COLOR_3DFACE
// (see CPictureEx::PrepareDC()). You can change the background by
// calling CPictureEx::SetBkColor(COLORREF) after CPictureEx::Load().
//
// I decided to leave in the class the functions to write separate frames from
// animated GIF to disk. If you want to use them uncomment #define GIF_TRACING
// and an appropriate section in CPictureEx::Load(HGLOBAL DWORD). These functions
// won‘t be compiled and linked to your project unless you uncomment #define GIF_TRACING
// so you don‘t have to worry.
//
// Warning: this code hasn‘t been subject to a heavy testing so
// use it on your own risk. The author accepts no liability for the
// possible damage caused by this code.
//
// Version 1.0 7 Aug 2001
// Initial release
//
// Version 1.1 6 Sept 2001
// ATL version of the class
//
// Version 1.2 14 Oct 2001
// - Fixed a problem with loading GIFs from resources
// in MFC-version of the class for multi-modules apps.
// Thanks to Ruben Avila-Carretero for finding this out.
//
// - Got rid of waitable timer in ThreadAnimation()
// Now CPictureEx[Wnd] works in Win95 too.
// Thanks to Alex Egiazarov and Wayne King for the idea.
//
// - Fixed a visual glitch of using SetBkColor.
// Thanks to Kwangjin Lee for finding this out.
//
// Version 1.3 10 Nov 2001
// - Fixed a DC leak. One DC leaked per each UnLoad()
// (forgot to put a ReleaseDC() in the end of
// CPictureExWnd::PrepareDC() function).
//
// - Now it is possible to set a clipping rectangle using
// CPictureEx[Wnd]::SetPaintRect(const LPRECT) functio
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 707072 2012-12-04 09:22 加载Gif VC++\Release\TransparentGif.exe
文件 36373 2012-06-06 21:14 加载Gif VC++\TransparentGif\PictureEx.cpp
文件 10851 2012-06-06 16:26 加载Gif VC++\TransparentGif\PictureEx.h
文件 2863 2012-12-04 08:31 加载Gif VC++\TransparentGif\ReadMe.txt
文件 307012 2009-04-27 14:01 加载Gif VC++\TransparentGif\res\l_0f2e2f10840ee8ce543c3a33148dad5d.gif
..A.SH. 5632 2012-12-04 08:48 加载Gif VC++\TransparentGif\res\Thumbs.db
文件 67777 2007-11-28 16:21 加载Gif VC++\TransparentGif\res\TransparentGif.ico
文件 370 2012-12-04 08:31 加载Gif VC++\TransparentGif\res\TransparentGif.rc2
文件 593 2012-12-04 08:52 加载Gif VC++\TransparentGif\resource.h
文件 147 2012-12-04 08:31 加载Gif VC++\TransparentGif\stdafx.cpp
文件 1879 2012-12-04 09:22 加载Gif VC++\TransparentGif\stdafx.h
文件 1030 2012-12-04 08:31 加载Gif VC++\TransparentGif\targetver.h
文件 1757 2012-12-04 08:31 加载Gif VC++\TransparentGif\TransparentGif.cpp
文件 493 2012-12-04 08:31 加载Gif VC++\TransparentGif\TransparentGif.h
文件 4872 2012-12-04 09:15 加载Gif VC++\TransparentGif\TransparentGif.rc
文件 5702 2012-12-04 09:22 加载Gif VC++\TransparentGif\TransparentGif.vcproj
文件 1409 2012-12-04 09:23 加载Gif VC++\TransparentGif\TransparentGif.vcproj.ZHL-PC.Administrator.user
文件 3832 2012-12-04 09:12 加载Gif VC++\TransparentGif\TransparentGifDlg.cpp
文件 752 2012-12-04 09:10 加载Gif VC++\TransparentGif\TransparentGifDlg.h
文件 908 2012-12-04 08:31 加载Gif VC++\TransparentGif.sln
..A..H. 11264 2012-12-04 09:23 加载Gif VC++\TransparentGif.suo
目录 0 2014-02-03 17:01 加载Gif VC++\TransparentGif\res
目录 0 2014-02-03 17:01 加载Gif VC++\Release
目录 0 2014-02-03 17:01 加载Gif VC++\TransparentGif
目录 0 2014-02-03 17:01 加载Gif VC++
----------- --------- ---------- ----- ----
1172588 25
- 上一篇:c语言直接读写xls文件,无需安装office
- 下一篇:C语言库函数源代码大全
相关资源
- 三子连珠游戏VC++程序
- 随机线性网络编码和确定线性网络编
- VC 6.0快速修改工程名工具
- 开发一个VC++证券模拟交易系统源代码
- Em算法实现聚类(VC++实现)
- 课程设计--计算器基于MFC
- VC编写的飞机仪表显示
- MFC基于对话框的二进制与十六进制间
- vc 源码 md5字符串加密算法 绝对可以用
- VC6.0_MFC_读写配置文件
- MFC中给对话框添加皮肤Skin_H
- VC++ DES 加密解密算法
- vc2008工程转为vc6工具
- vc++实现哲学家吃面问题
- VC通过HttpGet和HttpPost方式与WebService通
- VC++旋转风车代码
- 扫雷游戏源程序 c++课程设计必备
- 基于VC++的 IEC60870-103 电力规约 源码
- 如何用VC++创建及调用DLL
- 用openglMFC实现的魔方
- VC MFC图片获取代码.rar
- 一个DMC3000控制卡类的完全源代码
- VC/MFC创建可编辑节点的树形控件
- 使用vc++6.0调用opencv库函数生成5*5单位
- VC6.0做的仿按键精灵找图找色功能 f
- hid.lib setupapi.lib 等HID开发相关的库和
- MFC下好用的高速绘图控件-(Hight-Spe
- usb_hid_vc++6.0读写设备源码
- 换肤窗口VC++程序与源码
- 亦思C++VC调用
评论
共有 条评论