Convert BMP to PDF
Old scanner software loves BMP; email gateways and upload forms hate it. This decodes the bitmap and embeds it losslessly in a single-page PDF — and because the pixels get compressed on the way in, the PDF is usually far smaller than the BMP was. Same image, exactly, in a file you can actually send.
Also useful: Convert PNG to PDF
How it works
Add your bitmap scans; even huge raw files process quickly since it all runs locally.
Pixels are compressed losslessly into a single-page PDF per image — the document usually ends up far smaller than the BMP was.
Export the documents one by one, or take them all in a zip.
BMP vs PDF
Unusually, the document ends up lighter than the image: a raw 6 MB scan compresses losslessly to well under a megabyte inside the PDF. For emailing old scanner output there’s no contest — same pixels, a fraction of the attachment, and a format every office system opens.
| BMP | ||
|---|---|---|
| Compression | Usually none (raw pixels) | Container (embeds images) |
| Transparency | No | No |
| Animation | No | No |
| Support | Universal on desktop | Universal |
| Best for | Legacy Windows software, raw pixel exchange | Documents, forms, printing |
Frequently asked questions
No — that is the whole reason I built this. The conversion runs in your browser using WebAssembly, so your files never leave your device; there is no server in the loop at all. It also means the tool keeps working offline once the page has loaded, and there is no file size limit beyond your device’s memory.
BMPs are typically stored with no compression at all — raw pixels on disk. Inside the PDF the same pixels are stored with lossless compression, so a 6 MB scan routinely becomes a PDF under 1 MB with zero quality change. It is the same trick as BMP to PNG, wrapped in a document.
Yes — the embedding is lossless, so every pixel of the scan is preserved, which is what matters for anything you might need to re-read or OCR later. And since the conversion runs on your device, scans of IDs, contracts and medical records never touch a server.
Not yet — each image becomes its own single-page PDF, and the zip download collects them. A multi-page combine mode is the most requested feature across my PDF tools and is genuinely on the roadmap.
File it as PDF — this is one of the rare conversions that is smaller AND more compatible AND lossless all at once. The raw BMP pixels compress on the way into the document, so a 6 MB scan becomes a sub-1 MB PDF with nothing altered, in a format every records system accepts. The BMP original keeps exactly one advantage: ancient software can still read it.
Because the image might need to stay an image. Scans headed into an editor, an OCR pipeline or a web page do better as BMP to PNG — the same lossless shrink, but the result opens in image tools rather than PDF viewers. Documents are for filing; images are for working. Pick the container that matches what happens to the file next.
Related tools
Convert PNG to PDF
Convert PNG to PDF in your browser — free, private, no watermarks. Screenshots and graphics embed losslessly on pages sized exactly to the image, pixel-perfect.
Convert GIF to PDF
Convert GIF to PDF in your browser — free, private, no upload. The first frame embeds losslessly on a page sized exactly to the image — no watermark, no limits.
Convert BMP to JPG
Convert BMP to JPG in your browser — free, private, no upload or signup. Giant uncompressed bitmaps become shareable photos, typically 95–98% smaller.
Convert BMP to PNG
Convert BMP to PNG in your browser — free, lossless, private, no upload. Cut uncompressed bitmaps down by 50–90% without touching a pixel — no tradeoff.