Creating a 24-Bit Per Pixel Subregion of a 24-Bit Per Pixel Bitmap | CodeGuru

Creating a 24-Bit Per Pixel Subregion of a 24-Bit Per Pixel Bitmap

Original Bitmap Subregion of the original bitmap Environment: VC6 This article shows you how to create a portion of a 24-bit/pixel bitmap at runtime. In order to do this, you must add a 24-bit/pixel bitmap to your resources in VC++, decide what portion of the bitmap you wish (specified by the x-y coordinates of the […]

Written By
CodeGuru Staff
CodeGuru Staff
Nov 15, 2001
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

Original Bitmap

Subregion of the original bitmap

Environment: VC6

This article shows you how to create a portion of a 24-bit/pixel bitmap at runtime. In order to do this, you must add a 24-bit/pixel bitmap to your resources in VC++, decide what portion of the bitmap you wish (specified by the x-y coordinates of the upper left corner and the horizontal/vertical size of the portion), and what .bmp file you want the new portion of the bitmap to be store. The .bmp file created can be used at a later time, but in addition the bitmap of the subregion can be retrieved and used, for example, in your OnDraw function.

In the following code sample, we create a portion of a huge bitmap. The subregion is 416 by 224 pixels, but the original bitmap is well over 100 times this size.

CBitmapSubRegion bsr;
BOOL bSuccess;
// IDB_BITMAP_SCHUMACHERCAR is a 24-bit/pixel
// resource ID added to VC++
bSuccess = bsr.SetResourceID(IDB_BITMAP_SCHUMACHERCAR);
if (bSuccess)
{
  bSuccess = bsr.SetFileNameOfResourceBitmap(
                          CString(“SchumacherCar.bmp”));
  if (bSuccess)
  {
    // Want to create a subregion which starts at
    // (x,y) of (259,317) and is 416-pixels wide by
    // 224-pixels tall
    bSuccess = bsr.SetSubRegionOfBitmap(259,317,416,224);
    if (bSuccess)
    {
      //Set where to store the new bitmap
      bSuccess = bsr.SetFileNameForNewBitmap(
                    CString(“SuhumacherCarSubRegion.bmp”));
      if (bSuccess)
      {
        bSuccess = bsr.CreateBitmapOfSubRegion();
        if (bSuccess)
        {
          m_pBitmapSubRegion =
                           bsr.RetrieveBitmapOfSubRegion();
        }
      }
    }
  }
}

Downloads

Download source – 5 Kb

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.