Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / WTL
Article

Using GDI+ with MFC or native C/C++

Rate me:
Please Sign up or sign in to vote.
3.39/5 (76 votes)
14 Apr 20032 min read 284.1K   4.9K   88   51
Why 99.9% of GDI+ samples in .NET languages? What about C/C++?

Introduction

If you did a GDI+ sample query on Google, I bet you will get hundreds or thousands of URLs pointing you to a .NET free code. If you go book shop you will see dozens of books talking about GDI+. However, if you try to find information about integrating GDI+ with MFC/ATL/WTL, I bet you will find none (if you could, kindly post the URL!). So, is it impossible or so difficult that it doesn't worth using?

Findings

The answer is: Extremely easy to use GDI+ in MFC/ATL/WTL, or even straight C language. First, I have to admit I have no knowledge about .NET, I am not a fan of Microsoft .NET but rather prefer platform SDK. GDI+ IS NOT solely for .NET, if you plan to use GDI+ on Windows version lower than XP, then you would have to redistribute the GDI+ runtime (here). Don't worry, it is only 1.04 MB, not a xx MB .NET runtime.

So?

  • Add the following line to your stdafx.h
    #include <gdiplus.h>
    using namespace Gdiplus;
    #pragma comment(lib, "gdiplus.lib")
  • Intialize the GDI+ resources. Add this to your CWinApp derived class as member:
    GdiplusStartupInput gdiplusStartupInput;
    ULONG_PTR gdiplusToken;

    At InitInstance(), add:

    GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
  • Your application is ready to consume GDI+ now.
  • Upon exit, release GDI+ resources. Add the following line to ExitInstance():
    GdiplusShutdown(gdiplusToken);

As you can see, it is that simple. In general, it should be very easy to port your existing WIN32/MFC/WTL painting code into GDI+. If you ask why? Consider there is one GDI+ C++ class called RedEyeCorrection, that's right, to correct the red eyes that sometimes occur in flash photographs. If you have at least one year WIN32/MFC experiences, just follow the link here to see more.

I included a demo project to demonstrate the above. Enjoy!

GDI+ is device context handle centric, hence if you can split drawing logic aside from actual drawing code, you will have no problem in porting to GDI+. In some cases, 100 lines of drawing code can be reduced to just 5 lines with GDI+ intensive support of complex drawing exercises. This means mixing ordinary GDI with GDI+ a trivial task.

The downloaded project is a standard MFC SDI project, if you have read it (I hope so...), you will find that it is unbelievable simple. Nearly all time, you can simply cut-n-paste source code embedded in MSDN GDI+ to try things out. One tips: if the GDI+ need to load an external file, you can just right click the image in the help and save it, then continue to use the downloaded project to continue testing.

Finally, you do need to have a copy of platform SDK to have necessary GDI+ header, library at your VC search path. It is not necessary for the latest version, I am using version Aug'02. GDI+ files can be extracted from CAB_11, if you do not want to install the SDK.

** Don't forget to visit here for more information on integrating GDI+ with Win32/MFC/ATL/WTL **

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
TW
Malaysia Malaysia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionNever put using namespace in a .h file Pin
Charles Owen11-Jul-14 3:46
Charles Owen11-Jul-14 3:46 
Questioncode sequencing Pin
Member 102995233-Oct-13 4:51
Member 102995233-Oct-13 4:51 
QuestionInteresting and useful article Pin
Bhushan A10-Sep-13 1:54
Bhushan A10-Sep-13 1:54 
GeneralMy vote of 1 Pin
Sergey Alexandrovich Kryukov18-Mar-13 14:48
mvaSergey Alexandrovich Kryukov18-Mar-13 14:48 
GeneralMy vote of 3 Pin
shetkarabhijeet26-Nov-12 1:55
shetkarabhijeet26-Nov-12 1:55 
GeneralMy vote of 5 Pin
Shaunak De21-Sep-12 23:36
Shaunak De21-Sep-12 23:36 
QuestionBuild samples with VS2010 [modified] Pin
Will Stott13-Sep-11 6:09
Will Stott13-Sep-11 6:09 
GeneralGood Title, Excellent Sample Pin
Momony29-Apr-10 10:35
Momony29-Apr-10 10:35 
GeneralRe: Good Title, Excellent Sample Pin
Theo Buys10-Feb-11 2:24
Theo Buys10-Feb-11 2:24 
GeneralGDI+ inside DLL's Pin
Member 25423087-Aug-08 8:57
Member 25423087-Aug-08 8:57 
GeneralRe: GDI+ inside DLL's Pin
Greg Prosch10-Nov-08 6:30
Greg Prosch10-Nov-08 6:30 
GeneralRe: GDI+ inside DLL's Pin
zl19854715-Jul-09 1:02
zl19854715-Jul-09 1:02 
GeneralRe: GDI+ inside DLL's Pin
Greg Prosch15-Jul-09 5:56
Greg Prosch15-Jul-09 5:56 
GeneralBitmap - delete the object Pin
Alex Evans6-Feb-05 14:56
Alex Evans6-Feb-05 14:56 
GeneralRe: Bitmap - delete the object Pin
TW6-Feb-05 16:40
TW6-Feb-05 16:40 
GeneralRe: Bitmap - delete the object Pin
Alex Evans7-Feb-05 9:25
Alex Evans7-Feb-05 9:25 
Generalthank very much. ^^ Pin
vpas24-Jan-05 18:28
vpas24-Jan-05 18:28 
GeneralBest GDI+ MFC Beginners article so far Pin
TommYNandA19-Nov-04 20:37
TommYNandA19-Nov-04 20:37 
GeneralTo end this silly debate.... Pin
Tanzim Husain19-Nov-03 18:15
Tanzim Husain19-Nov-03 18:15 
GeneralDo not want to debate, but... Pin
Zhefu Zhang10-Nov-03 15:11
Zhefu Zhang10-Nov-03 15:11 
QuestionYou wanted a URL? Pin
Marc Clifton8-Nov-03 2:39
mvaMarc Clifton8-Nov-03 2:39 
AnswerRe: You wanted a URL? Pin
TW8-Nov-03 2:43
TW8-Nov-03 2:43 
GeneralRe: You wanted a URL? Pin
Marc Clifton8-Nov-03 2:47
mvaMarc Clifton8-Nov-03 2:47 
AnswerRe: You wanted a URL? Pin
vjedlicka7-Dec-05 22:56
vjedlicka7-Dec-05 22:56 
GeneralRe: You wanted a URL? Pin
Theo Buys10-Feb-11 2:16
Theo Buys10-Feb-11 2:16 

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.