Re: Where is GDI+ initialised?
"Joseph M. Newcomer" wrote in message
news:cbi0h6ld7u1ddish54bo7816pqg4n4ngfc@4ax.com...
I was not aware that GDI+ required any explicit initialization by the
user. And to the
best my knowledge, if such a call is required, there was never an option to
have this code
automatically inserted anywhere. I imagine that like many other
initializations, if
explicit initialization is required, you would have to hand-edit it into the
InitInstance
handler of your app class.<
An interesting comment - let me explain below.
First the routines I was referring to are
GdiplusStartup()
GdiplusShutdown()
Now here's my experience:
I created a new workspace/solution/project based on CWinAppEx after I got
VS2010 - about last April or so, and imported a lot of my old code into it
(*excluding* calls to the above GDIplus routines).
GDI+ just worked, and I assumed that the initialisation was built into
members of CWinAppEx which I was calling. But I didn't bother checking.
Then a couple of weeks ago GDI+ just didn't work any more: GDI calls drew
nothing. As I say - I didn't do anything, honest squire. So I looked
for the initialisation in the MFC classes (in order to track through and see
what was happening) but couldn't find it. Maybe its not there, which
would back up what you're saying - at least it would make you right up to a
fortnight ago :-)
So after getting no immediate answer to my question her, I put explicit
calls in exactly as you have suggested, and exactly as I had been doing with
the old VS2008 project. And GDI+ works again.
It's a mystery.
Dave
-- David Webber
Mozart Music Software
http://www.mozart.co.uk
For discussion and support see
http://www.mozart.co.uk/mozartists/mailinglist.htm
P.S.
// Routines called from InitInstance and ExitInstance:
void APDX::apdGdiPlusStartup()
{
ULONG_PTR gdiHookToken;
GdiplusStartupInput gdiSI;
GdiplusStartupOutput gdiSO;
gdiSI.SuppressBackgroundThread = TRUE;
Status s = GdiplusStartup( &apd_gdiplustoken, &gdiSI, &gdiSO );
gdiSO.NotificationHook( &gdiHookToken );
}
void APDX::apdGdiPlusShutDown()
{
GdiplusShutdown( apd_gdiplustoken );
}