Initializing... drag & drop files here
Supports: ODT
An ODT is an editable OpenDocument Text file — the native document of LibreOffice Writer and Apache OpenOffice Writer, and an export target of Google Docs. BMP is the Windows device-independent bitmap: a header, an optional colour table, and rows of pixels. Converting between them rasterizes each page of the document into a flat picture, one BMP per page. People reach for it when a legacy Windows application, an embedded display, a label printer or an imaging pipeline will only accept a bitmap. One thing worth knowing before you start: what this tool writes is not always the raw 24-bit bitmap people imagine — the Quality Preset picks between three genuinely different BMP encodings, and the table further down shows what each one actually produces.
| Property | Value |
|---|---|
| Standard | OASIS OpenDocument Format; ratified by ISO/IEC as 26300 (ODF 1.2 = ISO/IEC 26300-1:2015) |
| Latest revision | ODF 1.4, approved as an OASIS Standard on 6 October 2025 |
| MIME type | application/vnd.oasis.opendocument.text |
| Container | A ZIP archive holding content.xml, styles.xml, meta.xml, settings.xml, META-INF/manifest.xml and any embedded media |
| Editable | Yes — live text, styles, reflowable layout, tracked changes |
| Native editors | LibreOffice Writer, Apache OpenOffice Writer, recent Microsoft Word, Google Docs |
| Property | Value |
|---|---|
| Full name | Windows Bitmap / device-independent bitmap (DIB) |
| Defined by | Microsoft, as part of the Windows GDI bitmap structures |
| Header written here | 40-byte BITMAPINFOHEADER at the High and Medium presets; a 124-byte V5 header at Low |
| Compression available | Only BI_RLE8 and BI_RLE4 exist, and Microsoft documents them for 8- and 4-bit-per-pixel bitmaps only — a 16- or 24-bit BMP has no compression mode at all |
| Alpha channel | Not used by any of the presets here; the page is flattened onto a solid colour |
| Animation / multi-page | None — one image per file, which is why a multi-page ODT produces multiple BMPs |
| Best for | Legacy Windows software, embedded displays and pipelines that refuse anything else |
The BMP list offers only three entries — High, Medium and Low — and the picker opens on High. The other four presets that appear on formats like JPG and AVIF are deliberately hidden here, as are the "Target file size" and "Image Quality (%)" controls, because a bitmap has no continuous quality dial to turn. Measured on one US Letter page of body text, a footnote and a small table, rendered at the default 300 DPI (2,550 × 3,300 pixels):
| Quality Preset | What it writes | Colours | Compression | Measured size |
|---|---|---|---|---|
| High (opens here) | 16 bits per pixel, 5 bits each for red, green and blue | 32,768 possible | None — exactly 2 bytes per pixel plus a 54-byte header | 16.8 MB |
| Medium | 8-bit palette with Floyd–Steinberg dithering, metadata stripped, written as a BMP v3 file | 256 | BI_RLE8 run-length encoding |
261 KB |
| Low | 8-bit palette with Floyd–Steinberg dithering | 86 | BI_RLE8 run-length encoding |
267 KB |
Two things fall out of that table that are worth planning around. First, High is roughly 64× larger than the palette presets, because it is the only one the BMP format lets you store without compression. Second, Low is not reliably smaller than Medium — on this text page it came out marginally larger at every DPI tested, because dithering an image down to 86 colours scatters more short runs for the run-length encoder to trip over, and the V5 header adds a few dozen bytes on top. Choose Low for a palette constraint, not for file size.
.odt onto the page or click "+ Add Files" to browse. Several documents can be queued and converted with the same settings in one batch..bmp; a longer document returns one BMP per page with a "Download All (Zip)" button to collect them. No sign-up, no watermark.At the High preset the arithmetic is exact — two bytes per pixel, and the pixel count grows with the square of the DPI. The same US Letter page measured across the ladder:
| Conversion Quality | Page in pixels | High preset | Medium preset |
|---|---|---|---|
| 72 DPI | 612 × 792 | 0.97 MB | 39 KB |
| 150 DPI | 1,275 × 1,650 | 4.2 MB | 114 KB |
| 300 DPI (preselected) | 2,550 × 3,300 | 16.8 MB | 261 KB |
| 600 DPI | 5,100 × 6,600 | 67.3 MB | 638 KB |
If the destination system only needs to display the page on screen, 150 DPI at the High preset is usually the sweet spot; going to 600 DPI multiplies the bytes by sixteen for detail a screen cannot show.
Many. A BMP file holds exactly one image, so each page of the document is rendered separately: a one-page ODT downloads as a single .bmp, and anything longer returns one bitmap per page in document order, with a "Download All (Zip)" button to fetch the set. There is no multi-page bitmap format to fall back on. If you want every page held together in a single file, convert to ODT to PDF; for a genuine multi-page raster container, ODT to TIFF is the closer relative.
No, and it is a common misconception worth correcting. The High preset writes 16 bits per pixel — five bits each for red, green and blue — which is uncompressed but half the size of a 24-bit bitmap and quantised to 32,768 possible colours rather than 16.7 million. The Medium and Low presets are palette bitmaps that are compressed, using the BI_RLE8 run-length scheme. If a downstream system specifically requires 24-bit BI_RGB data, none of the three presets here matches that exactly, and you are better off exporting ODT to PNG and converting it with a tool that lets you name the bit depth.
Because the High preset stores every pixel literally while PNG applies lossless compression that is extremely effective on text. On the measured page, the High-preset BMP was 16.8 MB against 196 KB for a lossless PNG of the identical render — roughly 85× larger for pixel-identical content. BMP simply has no compression mode available above 8 bits per pixel, since Microsoft only defines run-length encoding for 4- and 8-bit bitmaps. Unless something downstream truly demands a bitmap, ODT to PNG is the better lossless choice.
Because file size at these presets is decided by how well run-length encoding compresses, not by how many colours are in the palette. Dropping from 256 to 86 colours forces heavier Floyd–Steinberg dithering, which breaks long identical runs into short alternating ones — precisely the pattern BI_RLE8 handles worst. Measured at 72, 150, 300 and 600 DPI on a text page, Low came out a few percent larger than Medium every time. Medium is the preset to pick when size is what you care about.
No. Rasterizing paints the glyphs into a fixed pixel grid, so there is no text layer left to select, copy, search or reflow — the same is true of any image format. Getting the words back would mean running OCR over the bitmap. Keep the original .odt if you may need to edit again, convert to ODT to DOCX to continue editing in Word, or to ODT to PDF for a fixed copy that still has a searchable text layer.
It sets the DPI at which the document's pages are rasterized, so it changes the pixel dimensions of the output rather than any compression parameter. A US Letter page comes out 612 × 792 at 72 DPI and 2,550 × 3,300 at the preselected 300 DPI; A4 comes out 2,480 × 3,508 at 300 DPI. Everything downstream — sharpness, legibility of small type, and on an uncompressed bitmap the file size — follows from that single choice, which is why it is the first setting to think about.
Not in these outputs. A rendered word-processing page is opaque to begin with, and none of the three BMP presets here writes an alpha channel, so the Image Transparency group's Colour dropdown decides what solid colour fills the page area. White is preselected because it matches a printed sheet; 24 other named colours are available if the bitmap will sit against a coloured background. For a page image that genuinely carries transparency, use ODT to PNG.
Your file is uploaded over an encrypted connection, converted on our servers — LibreOffice lays the document out, each page is rasterized at your chosen DPI, and the pages are encoded as bitmaps — and then deleted automatically after a few hours. No sign-up, no watermark, and nothing is shared or made public. There is no fixed page-count cap, but bear the arithmetic above in mind: a 20-page document at 600 DPI on the High preset is well over a gigabyte of bitmaps, so lower the DPI or pick Medium before converting anything long.