Add your files
Drop one BMP or two hundred. Batch conversion is not a paid feature here.
A large uncompressed bitmap needs to shrink without losing a single pixel, usually because it is a screenshot, a scan or a UI asset.
PNG applies DEFLATE with per-row filtering over exactly the same pixels. Nothing is approximated, yet screenshots and flat graphics commonly drop by 80 to 95 percent because BMP was storing every identical pixel in full.
BMP rows are stored bottom-up and padded to four-byte boundaries, which is why some naive converters output an upside-down image. That padding is also part of why the file was so big; PNG has none of it.
None. PNG is lossless, so the decoded PNG is bit-identical to the decoded BMP.
PNG if it is text or line art, which is most scans. JPEG smears the edges of letters and saves less than you would expect on high-contrast pages.
Drop one BMP or two hundred. Batch conversion is not a paid feature here.
Portable Network Graphics is lossless, so nothing is thrown away in the conversion.
Instant, because the file never went anywhere. Nothing expires, since nothing was stored.