Convert TIFF to BMP
TIFF is built for flexible imaging workflows, while BMP is still encountered in older Windows applications, control panels, and devices with a minimal decoder. This conversion is for that concrete compatibility requirement. It decodes the first image in the TIFF and writes a static 24-bit BMP, so a multi-page scan becomes page one only. The result is intentionally larger and less expressive than many TIFFs, but its predictable bitmap layout can be exactly what a legacy consumer expects.
Use this without the search next time. Prathom Workbench puts Prathom's tools in your toolbar.
Add to Chrome — freeDrop your TIFF file here, or click to browse
Up to 50 MB. Deleted automatically after 30 minutes.
What it does
- First page selected from a multi-page TIFF
- Static 24-bit BMP for broad legacy-reader compatibility
- Dimensions retained, with no automatic resizing
- Transparency flattened to white and high bit depth reduced to the BMP output
How to use TIFF to BMP
- 1
Add the TIFF or TIF file
Choose the scan or image that the receiving program cannot read in TIFF form. Both .tif and .tiff spellings are accepted. If it contains several pages, confirm that page one is the page the legacy consumer should receive.
- 2
Decode the first page
The server selects page one, converts its pixels to a conventional RGB raster, and writes a 24-bit BMP. The output keeps the selected page dimensions but does not carry later pages, TIFF layers, or a high-bit-depth channel representation.
- 3
Validate the device contract
Compare the result with the consumer's required width, height, bit depth, color order, and row orientation. A valid 24-bit BMP can still be unsuitable for a device that expects indexed color, RGB565, or a different fixed resolution.
How it works
The server opens the TIFF, chooses its first image, and decodes that page into a standard color raster. It then writes the raster as a 24-bit BMP. TIFF's tags and compression methods are interpreted during the read; the output is not made valid by renaming the extension. The result has one canvas, conventional RGB channels, and the simple header and row layout that legacy consumers commonly expect.
Page selection is explicit because TIFF is allowed to contain a sequence. Passing a multi-page scanner file to a generic image writer can produce several numbered files or a successful-looking result that does not exist at the requested name. Selecting page one avoids that ambiguity and makes the contract honest. It also means this page is not a document conversion: later pages remain in the source and must be handled by another workflow.
Why BMP is still requested
Modern web and imaging software generally has better choices than BMP. TIFF is more capable for scans and production, and PNG is usually more compact while preserving ordinary screen pixels. A legacy consumer may nevertheless have a fixed BMP import, an embedded display routine, or an instrument firmware path written before current image libraries were common. A simple bitmap can be read with predictable memory and little code, which is the practical reason to accept the larger file.
Do not assume that a valid BMP meets a device specification. The receiver may demand exact dimensions, bottom-up rows, BGR byte order, a particular header version, or a special 16-bit pixel layout. This route produces a conventional 24-bit result and does not tailor it to undocumented hardware quirks. Test the actual file in the target application before replacing a working asset.
Size, color depth, and what gets reduced
Uncompressed storage makes BMP size easy to estimate. Three bytes are used for each pixel in a 24-bit image, with small row-padding and header costs. A solid color scan and a noisy photograph of the same dimensions can therefore be nearly the same size. That predictability helps a framebuffer reader, but it can exceed an upload limit or consume far more disk than the source TIFF. Resize a copy only when the destination specification permits it; this conversion itself keeps the selected page's canvas.
The 24-bit output has 8 bits per red, green, and blue channel. A 16-bit-per-channel TIFF carries more tonal information than this BMP can represent, and a CMYK TIFF has to be interpreted as a display-oriented color result. Profiles, layers, paths, private tags, and TIFF compression settings are not the purpose of this derivative. Keep the TIFF as the source whenever color-managed editing, print production, or archival evidence matters.
Transparency is flattened against white for compatibility. BMP has variants that can hold alpha, but support is uneven among old readers, so preserving a channel that the consumer ignores can produce a black box, halos, or corrupted pixels. If the intended background is not white, prepare the image against that background before conversion and inspect its edges in the receiving software.
Choosing the right handoff
Use this route when a named consumer requires BMP and you have confirmed its exact input rules. Use TIFF or PDF when all pages of a scan must remain together, and use PNG when the destination accepts a lossless screen format with transparency. The BMP is a compatibility copy, not a replacement for the TIFF master. Keep both until the legacy application has opened the file, displayed the important content correctly, and passed whatever size and bit-depth checks its workflow imposes.
Examples
A scanner's first page for old desktop software
The old program can open the bitmap, but the output is not a four-page document and its byte count is much higher than the compressed scan. If all pages matter, keep the TIFF or make a PDF instead of sending this single-page compatibility derivative.
A color TIFF for an instrument display
The display receives a format it knows how to parse, but the 16-bit-per-channel source is represented by the output's ordinary 8-bit channels. Inspect gradients and measurement marks carefully, and confirm that the instrument wants 24-bit color before treating the file as a valid calibration asset.
Frequently asked questions
Which page of a multi-page TIFF becomes the BMP?
Only the first page is selected. BMP is used here as one static raster and does not provide the multi-page document structure needed to carry later scanner images. Page two and beyond are not appended vertically, placed in hidden frames, or included as extra files. Review the first page before downloading, and choose PDF or retain the original TIFF when the complete scanned set must travel in one document.
What size and bit depth does the BMP have?
The dimensions of the selected TIFF page are retained, and the output is written as a 24-bit BMP with three 8-bit color channels. A rough uncompressed size is width multiplied by height multiplied by three, plus headers and row padding, so a large scan can be surprisingly heavy. The converter does not resize to a device's screen or produce 8-bit indexed, 16-bit RGB565, or monochrome output; verify the receiving specification before use.
Does TIFF to BMP preserve a high-quality or transparent TIFF?
It preserves the visible pixels that can be represented in the selected 24-bit output, but it is not a full-fidelity container conversion for every TIFF. Data above 8 bits per channel is reduced to ordinary 8-bit channels, and transparent areas are flattened to white because legacy BMP readers handle alpha inconsistently. Layers, profiles, compression choices, and TIFF-specific tags should be retained in the original when editing, print, or archival fidelity is important.