I have to convert a bmp into another standard format, without losing quality. To which format shall I convert it to?

link|improve this question

25% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You already got it in the tags. PNG is another lossless format that is widely supported. Depending on the software you use to create it, PNG images are compressed by filtering and using the DEFLATE algorithm, which means that their file size will probably be smaller than the original BMP.

You can also try to convert it to a TIFF image, but that format offers more features that you might not even need.

link|improve this answer
PNG is lossless and it is compressed, resulting in much smaller file sizes than BMP – Amadeu Jan 26 at 14:11
feedback

Your Answer

 
or
required, but never shown

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