The MASM Forum

General => The Workshop => Topic started by: HSE on December 20, 2023, 05:20:56 AM

Title: Bitmap file modification
Post by: HSE on December 20, 2023, 05:20:56 AM
Hi all!

Somebody know how to change one color for another inside a 24 bits Bitmap.

I have a little problem to understand pixel array  :biggrin:

Test is after an AW27 code.

Thanks in advance, HSE
Title: Re: Bitmap file modification
Post by: NoCforMe on December 20, 2023, 07:15:53 AM
Sure. The things you need to know about how bitmaps are formatted are these:


A 24-bit bitmap will have no palette, so you don't need to mess what that.

In your case, since your bitmap is 10x10, each line is 30 bytes of data, so there are 2 bytes of padding on each line. As they say, I leave it as "an exercise for the reader" to determine programmatically how much padding, if any, there is.

To change a color in a bitmap, locate the bitmap array, cruise through it line-by-line, looking at each pixel (3 bytes) and replacing them as you wish. Be sure to take the padding into account. Probably the easiest way is to calculate the "stride", which is the actual distance from the beginning of one line to the beginning of the next line.

Is this enough to get you started? I've been playing with bitmaps quite a bit recently, so may be able to help you further.
Title: Re: Bitmap file modification
Post by: HSE on December 20, 2023, 09:24:16 AM
Thanks, NoC!

Quote from: NoCforMe on December 20, 2023, 07:15:53 AMAll lines of bitmap data must align to a 32-bit boundary, so there might be padding (zeros) on each line

That was the strange thing  :thumbsup: