4

When analyzing my BMP image, I found that there are three fields in my resolution, ex. 960 x 540 x 32. Why is this happening?

I have a BMP file I am trying to run steganography software on. While trying to run, the software tells me that the bmp file's format is not accepted. I looked into it and ran file on the image and got this:

output.bmp: PC bitmap, Windows 98/2000 and newer format, 960 x 540 x 32, cbSize 2073738, bits offset 138

As you can see, there are three fields in the resolution. Can anyone tell me why this is happening?

Rogue
  • 53
  • 5

1 Answers1

8

The three fields in the BMP image's resolution stand for its width, height, and colour depth (the number of bits used to represent the colour information of each pixel).

The BMP image in this instance has a resolution of 960 x 540 x 32, or 960 pixels on the wide side, 540 pixels on the tall side, and 32 bits per pixel for the colour depth.

The colour depth of the image might not be compatible because the steganography software in use has specific requirements for the BMP file format.

Hawshemi
  • 226
  • 1
  • 4