Click here to Skip to main content
15,881,172 members
Articles / Multimedia / GDI+
Article

Adding GIF-animation using GDI+

Rate me:
Please Sign up or sign in to vote.
4.84/5 (33 votes)
29 Jan 20023 min read 468K   9.5K   117   99
Norm demonstrates how to coerce GDI+ into displaying animated GIFs

Motive

How many of you developers are using GDI+? I reckon, not many. As a seasoned Windows C++ programmer developing for desktop applications, I've been  using the archaic GDI on regular basis. Since the release of GDI+ (see (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdicpp) I've been using GDI+ in new applications and also converting existing applications to use GDI+. There numerous compelling reasons why you should be using GDI+, here are some:

  • Successor to GDI
  • Compatible with .NET
  • Optimizes many of the capabilities of GDI
  • Supports: Gradient Brushes, Independent Path Objects, Transformations and the Matrix Object, Scalable Regions, Alpha Blending and support for multiple image formats:
    • BMP
    • GIF
    • JPEG
    • Exif
    • PNG
    • TIFF
    • ICON
    • WMF
    • EMF

During my development of Windows GUI based applications with GDI+, I've come across the need to display animated GIFs, whilst GDI+ does not support displaying animated GIFs directly, in can be done with a little coding.

Implementation

Firstly lets look at drawing a simple image using GDI+.

void CMyWnd::OnPaint()
{
	CPaintDC dc(this);
	
	Graphics graphics(&dc); // Create a GDI+ graphics object

	Image image(L"Test.Gif"); // Construct an image
	
	graphics.DrawImage(&image, 0, 0, image.GetWidth(), image.GetHeight());	
		
}

Straight away we can see the simplistic C++ interface for using GDI objects. This makes it a sure fire way for using GDI objects. There is no need for using

SelectObject
to select GDI objects in and out of the device context.

For those of the readers who are not familiar with the format of an animated GIF, animated GIF is actually a series of GIF frames with a delay time associated each frame, therefore each frame can have a different delay time.

My implementation of encapsulating an animated GIF functionality derives a class called from ImageEx from the GDI+ Image class. The first task is to determine whether or not a GIF is of the animated kind. The following code demonstrates this:

bool ImageEx::TestForAnimatedGIF()
{
	UINT count = 0;
	count = GetFrameDimensionsCount();
	GUID* pDimensionIDs = new GUID[count];

	// Get the list of frame dimensions from the Image object.
	GetFrameDimensionsList(pDimensionIDs, count);

	// Get the number of frames in the first dimension.
	m_nFrameCount = GetFrameCount(&pDimensionIDs[0]);

	// Assume that the image has a property item of type PropertyItemEquipMake.
	// Get the size of that property item.
	int nSize = GetPropertyItemSize(PropertyTagFrameDelay);

	// Allocate a buffer to receive the property item.
	m_pPropertyItem = (PropertyItem*) malloc(nSize);

	GetPropertyItem(PropertyTagFrameDelay, nSize, m_pPropertyItem);


	delete pDimensionIDs;

	return m_nFrameCount > 1;
}

m_pPropertyItem->value is actually a pointer to an array of longs, each long is a delay time which corresponds to a GIF frame. Because

GetPropertyItem
returns a different size depending on what property using interested in, a Size is require and its the programmer responsibility to allocate and deallocate the memory associated with GetPropertyItem. The size is determined by calling GetPropertyItemSize supplying property tag your interested in.

Once the number of frames and delay times have been retrieved from the image, a thread is created which calls to

DrawFrameGIF 
until the object destructs. See DrawFrameGIF below:

bool ImageEx::DrawFrameGIF()
{

	::WaitForSingleObject(m_hPause, INFINITE);

	GUID pageGuid = FrameDimensionTime;

	long hmWidth = GetWidth();
	long hmHeight = GetHeight();

	HDC hDC = GetDC(m_hWnd);
	if (hDC)
	{
		Graphics graphics(hDC);
		graphics.DrawImage(this, m_rc.left, m_rc.top, hmWidth, hmHeight);
		ReleaseDC(m_hWnd, hDC);
	}

	SelectActiveFrame(&pageGuid, m_nFramePosition++); 

	if (m_nFramePosition == m_nFrameCount)
		m_nFramePosition = 0;


	long lPause = ((long*) m_pPropertyItem->value)[m_nFramePosition] * 10;

	DWORD dwErr = WaitForSingleObject(m_hExitEvent, lPause);

	return dwErr == WAIT_OBJECT_0;
}

One other interesting aspect of this class is it has the ability of loading a image directly as a resource from an executable. I usually import my GIF into a project and give it a resource type of "GIF" and then rename the resource ID from a numeric constant to a string (see the example code).

Conclusion

If you familiar with the concepts and programming of GDI, GDI+ provides some advance features and the interface almost mirrors the .NET GDI namespace. The sample apps and code include the full listings for implementing animated GIF in your code applications. For code reference just search for GDI+ within the code. One thing I haven't included in this article is starting up and shutting the GDI+ subsystem.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Software Kinetics
United Kingdom United Kingdom




Software Kinetics
are experts in developing customised and bespoke applications and have expertise in the development of desktop, mobile and internet applications on Windows.


We specialise in:

  • User Interface Design
  • Desktop Development
  • Windows Phone Development
  • Windows Presentation Framework
  • Windows Forms
  • Windows Communication Framework
  • Windows Services
  • Network Applications
  • Database Applications
  • Web Development
  • Web Services
  • Silverlight
  • ASP.net


Visit Software Kinetics

Comments and Discussions

 
BugA small mistake could lead to Undefined Behavior Pin
Amir T.8-Jun-15 2:50
Amir T.8-Jun-15 2:50 
GeneralMy vote of 3 Pin
Mahdi Nejadsahebi30-Apr-11 21:13
Mahdi Nejadsahebi30-Apr-11 21:13 
Questionone thread per gif, more gif picture will use more thread, and that's terrible Pin
David_LoveCpp7-Oct-10 3:31
David_LoveCpp7-Oct-10 3:31 
QuestionProblem with speed for animate gif [modified] Pin
harturo12-Feb-10 11:06
harturo12-Feb-10 11:06 
AnswerRe: Problem with speed for animate gif Pin
Garth J Lancaster12-Feb-10 11:58
professionalGarth J Lancaster12-Feb-10 11:58 
a couple of thoughts ..

1) what is the *10 multiplier here/where did it come from - have you gone through the allowed range of values to see if *10 is enough - Im guessing if you're saying its playing the gif too fast, then you may need to increase this value to increase the delay

harturo wrote:
UINT pause= (UINT)((long*)m_pPropertyItem->value)[0]*10;


2) I dont see why you reset the timer interval in the timer event itself .. and incidentally, you use the same multiplier, *10 there as well - so presumably if you adjust the *10 as per (1), if its valid to have the pause adjustment here, you'll possibly need the same multiplier ?


harturo wrote:
UINT pause=(UINT)((long*)m_pPropertyItem->value)[m_nFramePosition]*10;




'g'
AnswerRe: Problem with speed for animate gif [modified] Pin
harturo12-Feb-10 16:36
harturo12-Feb-10 16:36 
AnswerRe: Problem with speed for animate gif: ===THANKS, DOUBT RESOLVED=== [modified] Pin
harturo16-Feb-10 21:23
harturo16-Feb-10 21:23 
GeneralRe: Problem with speed for animate gif: ===THANKS, DOUBT RESOLVED=== Pin
NormDroid16-Feb-10 21:35
professionalNormDroid16-Feb-10 21:35 
GeneralRe: Problem with speed for animate gif: ===THANKS, for your quickly 12 min. after Re=== Pin
harturo17-Feb-10 14:22
harturo17-Feb-10 14:22 
GeneralRe: Problem with speed for animate gif: ===THANKS, for your quickly 12 min. after Re=== Pin
NormDroid17-Feb-10 20:36
professionalNormDroid17-Feb-10 20:36 
AnswerRe: Problem with speed for animate gif Pin
kwoitek4-Nov-10 2:07
kwoitek4-Nov-10 2:07 
Generalmultithreaded use Pin
Anant wakode28-Oct-09 0:35
Anant wakode28-Oct-09 0:35 
GeneralRe: multithreaded use Pin
NormDroid28-Oct-09 1:05
professionalNormDroid28-Oct-09 1:05 
GeneralMy vote of 1 Pin
Sheetal_Joshi22-Oct-09 2:20
Sheetal_Joshi22-Oct-09 2:20 
GeneralRe: My vote of 1 Pin
NormDroid28-Oct-09 1:02
professionalNormDroid28-Oct-09 1:02 
GeneralSerious Error during drawing a Multi-Frame(>10) Gif file Pin
adelezy16-Sep-09 22:07
adelezy16-Sep-09 22:07 
GeneralAccess Violation Pin
adelezy14-Sep-09 23:12
adelezy14-Sep-09 23:12 
GeneralCommercial License Pin
Rafi Rainshtein21-Jul-09 22:25
Rafi Rainshtein21-Jul-09 22:25 
GeneralRe: Commercial License Pin
NormDroid21-Jul-09 22:40
professionalNormDroid21-Jul-09 22:40 
GeneralRe: Commercial License Pin
Rafi Rainshtein22-Jul-09 1:45
Rafi Rainshtein22-Jul-09 1:45 
GeneralVC++.Net and Images Pin
minad_7865-Sep-07 3:54
minad_7865-Sep-07 3:54 
GeneralRe: VC++.Net and Images Pin
NormDroid5-Sep-07 3:59
professionalNormDroid5-Sep-07 3:59 
GeneralRe: VC++.Net and Images Pin
minad_7865-Sep-07 23:40
minad_7865-Sep-07 23:40 
GeneralRe: VC++.Net and Images Pin
NormDroid6-Sep-07 2:09
professionalNormDroid6-Sep-07 2:09 
GeneralCreate animated GIF Pin
Tall Dude19-Jan-07 8:58
Tall Dude19-Jan-07 8:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.