RLE (Run-Length-Encoding) Compression Routine in MFC for 256-Color Bitmaps | CodeGuru

RLE (Run-Length-Encoding) Compression Routine in MFC for 256-Color Bitmaps

Environment: VC6, MFC This is a RLE compression routine, written in MFC. I wrote this because I cannot find handy code for such a thing. RLE compression is useful when saving a SIMPLE Windows bitmap. My implementation is rather stupid and not optimized. Therefore, if the source bitmap is complex (like the one in the […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 30, 2002
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6, MFC

This is a RLE compression routine, written in MFC. I wrote this because I cannot find handy code for such a thing.

RLE compression is useful when saving a SIMPLE Windows bitmap. My implementation is rather stupid and not optimized. Therefore, if the source bitmap is complex (like the one in the demo app window shown below), you could even get a bigger bitmap file after compression.

The compression routine is wrapped in an MFC bitmap control class, CDVDBitmapControl, which you can put conveniently in a dialog. The usage is easy:

  1. Add a static control (say, IDC_STATIC_BITMAP) in the dialog for the bitmap control.
  2. Add an #include “DVDBitmapControl.h” in the header file of your dialog.
  3. Add a member variable (say, m_bmp) of type “CDVDBitmapControl” in your dialog class.
  4. In OnInitDialog(), add this line:
    m_bmp.SubclassDlgItem( IDC_STATIC_BITMAP, this).
  5. Call m_bmp.LoadBitmapFile(CString) to load a bitmap into the control.
  6. Call m_bmp.SaveBitmapFile(CString) to save a bitmap into an 8-bit RLE bitmap.

If you need only the compression code, you can just extract the CDVDBitmapControl::CompressInRLE8() and CDVDBitmapControl::EndOfLine() routines from “DVDBitmapControl.cpp”. It is quite straightforward to use them.

I did not write the decompression part because the Windows API LoadImage() already does it.

PS: in the demo app, if the loaded bitmap is not in 256 colors, [Save] will not work.

Downloads


Download demo project – 20 Kb


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.