Pelles C forum

Assembly language => Assembly discussions => Topic started by: Vortex on December 17, 2023, 12:43:04 PM

Title: Displaying an image with GDI+
Post by: Vortex on December 17, 2023, 12:43:04 PM
A small example :

   .if uMsg == WM_CREATE

        mov     rax,OFFSET StartupInfo
        mov     GdiplusStartupInput.GdiplusVersion[rax],1

        invoke  GdiplusStartup,ADDR token,ADDR StartupInfo,0
        invoke  UnicodeStr,ADDR filename,ADDR UnicodeFileName

        invoke  GdipCreateBitmapFromFile,ADDR UnicodeFileName,\
                ADDR BmpImage

        invoke  GdipCreateHBITMAPFromBitmap,BmpImage,\
                ADDR hBitmap+rip,0

        invoke  GdipDisposeImage,BmpImage

    .elseif uMsg == WM_PAINT

        invoke  BeginPaint,_hWnd,ADDR ps
        mov     hdc,rax

        invoke  CreateCompatibleDC,rax
        mov     hMemDC,rax

        invoke  SelectObject,rax,hBitmap+rip

        invoke  GetObject,hBitmap+rip,sizeof(BITMAP),ADDR bm
       
        lea     r11,bm
        mov     r10d,BITMAP.bmHeight[r11]
        mov     r9d,BITMAP.bmWidth[r11]

        invoke  BitBlt,hdc,0,0,r9,r10,\
                hMemDC,0,0,SRCCOPY
           
        invoke  DeleteDC,hMemDC
        invoke  EndPaint,_hWnd,ADDR ps
Title: Re: Displaying an image with GDI+
Post by: Vortex on March 25, 2025, 06:48:31 PM
Using GDI+ functions to retrieve the height and width of an image :

   .if uMsg == WM_CREATE

        mov     rax,OFFSET StartupInfo
        mov     GdiplusStartupInput.GdiplusVersion[rax],1

        invoke  GdiplusStartup,ADDR token,ADDR StartupInfo,0
        invoke  UnicodeStr,ADDR filename,ADDR UnicodeFileName

        invoke  GdipCreateBitmapFromFile,ADDR UnicodeFileName,\
                ADDR BmpImage

        invoke  GdipGetImageWidth,BmpImage,ADDR ImgWidth+rip
        invoke  GdipGetImageHeight,BmpImage,ADDR ImgHeight+rip

        invoke  GdipCreateHBITMAPFromBitmap,BmpImage,\
                ADDR hBitmap+rip,0

        invoke  GdipDisposeImage,BmpImage
       
        invoke  GdiplusShutdown,token

    .elseif uMsg == WM_PAINT

        invoke  BeginPaint,_hWnd,ADDR ps
        mov     hdc,rax

        invoke  CreateCompatibleDC,rax
        mov     hMemDC,rax

        invoke  SelectObject,rax,hBitmap+rip

        invoke  BitBlt,hdc,0,0,\
                ImgWidth+rip,ImgHeight+rip,\
                hMemDC,0,0,SRCCOPY
           
        invoke  DeleteDC,hMemDC
        invoke  EndPaint,_hWnd,ADDR ps
Title: Re: Displaying an image with GDI+
Post by: TimoVJL on March 25, 2025, 08:14:11 PM
GdiPlusFlat is capable to paint picture without bitmap.
Perhaps in a your further example is coming ?
Title: Re: Displaying an image with GDI+
Post by: Vortex on March 29, 2025, 08:30:49 PM
Hi Timo,

About creating a picture without a bitmap, could you provide some detailş?
Title: Re: Displaying an image with GDI+
Post by: TimoVJL on March 29, 2025, 08:39:50 PM
GdiPlus have some functions for displaying image:
GpGraphics *g;
GdipCreateFromHDC(hDC, &g);
GdipDrawImage(g, img, 0.0, 0.0);
//GdipDrawImageRect(g, img, 0.0, 0.0, 100.0, 100.0);
GdipDeleteGraphics(g);
Naturally painting a bitmap might be faster.
Title: Re: Displaying an image with GDI+
Post by: Vortex on March 31, 2025, 09:53:36 PM
Hi Timo,

Thanks for the heads-up. Here is a GdipDrawLine example.