Understanding GDI mapping modes and other functions | CodeGuru

Understanding GDI mapping modes and other functions

This tool was contributed by Hans Wedemeyer. MapMode.exe is an interactive tool that can help a programmer better understand various graphics functions and their interactions. It demonstrates the interactions of SetMapMode() // all eight modes SetWindowExt () SetViewportExt () SetViewportOrg () CreateCompatibleBitmap() BitBlt( ) Have you ever wondered what a printed page will look like […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 6, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This tool was contributed by Hans Wedemeyer.

MapMode.exe is an interactive tool that can help a programmer better understand
various graphics functions and their interactions.

It demonstrates the interactions of

SetMapMode()    // all eight modes
SetWindowExt ()
SetViewportExt ()
SetViewportOrg ()
CreateCompatibleBitmap()
BitBlt( )

Have you ever wondered what a printed page will look like in a particular map
mode, here’s thre answer and you don’t have to write code to find out !

Ever wondered what all those arguments to BitBlt() do ! now you can find out!

Open eight windows and compare all eight map modes at the same time !

When you run the program, there appears a “control panel”, on it are various
buttons to adjust the parameters for each function. as you adjust the screen
is repainted and the change takes place immediately.

Consider these to be in the program’s OnDraw()

void MapMode::OnDraw(CDC* pDC )
{
    CRect rect;
    GetClientRect(&rect);

    if ( pDC->IsPrinting())
    {
        rect.left = 0;
        rect.top = 0;
        rect.right = pDC->GetDeviceCaps(HORZRES);
        rect.bottom = pDC->GetDeviceCaps(VERTRES);
    }

    pDC->SetMapMode ( m_nMapMode );

    pDC->SetWindowExt ( X, Y )

    pDC->SetViewportExt ( X , Y );

    pDC->SetViewportOrg ( X, Y );

    bmp.CreateCompatibleBitmap( pDC, X, Y );

   pDC->BitBlt( X1, Y1, X2, Y2, pBmpDC, X3, Y3, SRCCOPY );
}

You may draw a line to better understand or locate various x,y coordinates.

Additions made since the original tool.

Annotated origins for easy indentifaction.

Another new feature is “Find Origin” which help pin point in which direction the
origin could be, useful if you loose the origin off screen.

Download file

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.