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?

link|improve this question

3  
JPEG2000 is not always lossless. You can use it lossless, but mostly, it's used to compress images in a lossy way. – slhck Feb 4 at 22:10
feedback

1 Answer

up vote 3 down vote accepted

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.

link|improve this answer
You said visible difference. Should there really be any difference except for file size? – user1032421 Feb 4 at 22:13
2  
That is correct. The pixels will be 1:1. – iglvzx Feb 4 at 22:15
1  
PNG also supports transparency while BMP doesn't. – dnbrv Feb 5 at 4:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.