News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

GDI+ flat

Started by iwrbc, December 15, 2023, 12:19:36 PM

Previous topic - Next topic

iwrbc

Hi,
I am trying to reproduce some of the code in this thread https://forum.pellesc.de/index.php?topic=7146.0. I am confused by this block of code:

GpBitmap *bitmap = NULL;
GdipCreateBitmapFromScan0(100, 100, 0, PixelFormat32bppARGB, NULL, &bitmap); // create a bitmap object with specified width/height/color
GpGraphics *graph;
GdipGetImageGraphicsContext(bitmap, &graph); // create a graphic object via bitmap object

Because if I copy that to my program, the last line of this block gives a compiler error:
error #2140: Type error in argument 1 to 'GdipGetImageGraphicsContext'; expected 'GpImage (aka (incomplete) struct tagGpImage) *' but found 'GpBitmap (aka (incomplete) struct tagGpBitmap) *'. Which is consistent with the contents of fGdiPlusFlat.h

Am I doing something wrong? Or is there another way to create a graphic object from a bitmap?
BTW My ultimate goal is to create, display and save a bitmap as a .png-file, like in this post https://stackoverflow.com/questions/39551863/creating-gdi-bitmaps-in-memory-and-then-saving-as-png.
Any help is appreciated.

TimoVJL

Perhaps have to cast it , as GpImage is for common usage
GdipGetImageGraphicsContext((GpImage*)bitmap, &graph); // create a graphic object via bitmap object

C++ (Cpp) GdipGetImageGraphicsContext Examples
May the source be with you

frankie

#2
First of all be sure to have the last version of my fGdiPlusFlat.h header file that you can download from here.
Then download the manual here.
Then try the attached example that shows how to save an image (is the sample in the thread you showed).
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide

iwrbc

Great, thanks for fast reply, I got it working.