Is there any quality difference between PNG vs BMP image formats?

103,125

Solution 1

BMP is both uncompressed and lossless. PNG is compressed but lossless. Thus, with a lossless format the only visible difference is the file size. I'd recommend using PNG over BMP unless you can't for compatibility reasons.

Solution 2

There's no quality difference between BMP & PNG format (except PNG is compressed using deflate algorithm).

BMP8 can be compressed using RLE (run-length-encoding) algorithm, but BMP16/24/32/64 doesn't support compression yet.

BMP32 support alpha channel just like PNG32 support transparency.

Solution 3

No difference in quality, both standards are lossless. BMP uncompressed takes more space, but when compressed (e.g. when put in a .zip or .7z file) BMP can be better.

Having done some experiments, I saved a photo in BMP and in PNG, and compressed both files. (.zip) The BMP was 1.8% bigger, but that would vary between photos.

If you are compressing photos, it makes no difference.

However simple picture, such as a drawing you did in paint, or a diagram, will compress much better with .bmp rather than .png.

I again, tested this. I did a logo in paint (similar to a ford logo) and compressed it with 7zip. Uncompressed, the png was 136kb, the bmp 1.7 MB. Compressed, the png was ~100kb and the bmp was 18kb.

If you want to compress pictures, save in .bmp. If not, use .png.

Both when compressed whooped jpeg btw.

Share:
103,125

Related videos on Youtube

user1032421
Author by

user1032421

Updated on September 18, 2022

Comments

  • user1032421
    user1032421 over 1 year

    I have just learned that PNG is a lossless image format while BMP can be both uncompressed or lossless format. Should there be a quality difference between these two? If not, does it mean that other lossless formats like TIFF, JPEG2000 and PNG offer the same quality as BMP?

    • Admin
      Admin over 12 years
      JPEG2000 is not always lossless. You can use it lossless, but mostly, it's used to compress images in a lossy way.
  • user1032421
    user1032421 over 12 years
    You said visible difference. Should there really be any difference except for file size?
  • iglvzx
    iglvzx over 12 years
    That is correct. The pixels will be 1:1.
  • dnbrv
    dnbrv over 12 years
    PNG also supports transparency while BMP doesn't.
  • nhahtdh
    nhahtdh about 11 years
    BMP does support alpha channel (transparency) since Windows 95. Just that Paint in Windows does not save the file with transparency (for compatibility reason?), which I think might have been the source of misconception.
  • Skyvory
    Skyvory over 3 years
    I confirm this. Illustration images tend to compress so much better in BMP than PNG. Difference is like day and night in some occasion, 10GB of images could be compressed to mere 100MB while PNG couldn't even reach under 95% compression ratio.