Hi All,
in my application i am having a panel with associated a wxWindowDC and wxMemoryDC. i have to draw the various thing on that panel like bg color, on top of bg color bg image and on the top bg image i have to draw some text etc.
I am storing all this thing into memory dc and finally in paint handler i m copying the memory dc to window dc.
But i stuck in this process when i have a .gif (with multiple frames) and i m trying to bliting this gif image on DC that time it shows only a single frame of that gif image (its became a ordinary still image not an animated image).
how i can store this whole gif image in memory dc and display full gif image on dc(with animation).
I cant use wx.AnimateCrl() because i need that image in memoryDC.
Any help really appreciable.