How to Convert TIFF to BMP: What Nobody Else on This SERP Tells You
TIFF to BMP conversion comes up in one specific world: legacy industrial and scientific software that predates widespread TIFF support and requires raw, uncompressed bitmap input. Microscopy platforms, machine vision inspection systems, older CNC toolpath generators, and legacy laboratory imaging applications are the primary reasons this conversion exists in 2026.
If you need to convert TIFF to BMP free without uploading your files to a server, this guide covers four methods that work on Windows, Mac, and the command line. Before the step-by-step instructions, there are three things every other tool page on this keyword skips: what happens to your file size, what happens if your TIFF is 16-bit, and what happens if your TIFF has multiple pages. All three surprises regularly catch users off-guard.
The File Size Problem: TIFF to BMP Makes Large Files Even Larger
TIFF is a flexible container format. It can store images with no compression, LZW compression, ZIP/Deflate compression, or PackBits compression — depending on how the file was created. Professional TIFF workflows in Photoshop, Lightroom, and Capture One typically use LZW or ZIP compression, which meaningfully reduces file size below the raw uncompressed size.
BMP has no compression at all. Every pixel is stored as 3 bytes of raw color data (red, green, blue) with nothing removed. This means converting a compressed TIFF to BMP always increases the file size.
| Image | TIFF (LZW) | TIFF (Uncompressed) | BMP | Increase vs TIFF LZW |
|---|---|---|---|---|
| 1920×1080 photo | 4.2 MB | 5.9 MB | 5.9 MB | 1.4× larger |
| 3840×2160 (4K) photo | 18 MB | 23.7 MB | 23.7 MB | 1.3× larger |
| 1280×720 graphic | 600 KB | 2.6 MB | 2.6 MB | 4.3× larger |
| A4 scan at 300 DPI | 7.5 MB | 24.7 MB | 24.7 MB | 3.3× larger |
| Microscopy slide (4096×4096) | 32 MB | 48 MB | 48 MB | 1.5× larger |
The BMP file size formula is completely predictable regardless of the source image:
BMP file size (MB) = width × height × 3 ÷ 1,048,576
For a 1920×1080 image: 1920 × 1080 × 3 ÷ 1,048,576 = 5.93 MB — every time, for every image at that resolution, no matter what the TIFF weighed.
For flat-color graphics, diagrams, and screenshots, the compression ratio in TIFF is especially high (Deflate is extremely effective on repeating patterns), which means the BMP expansion can be 4–10× or more compared to a compressed TIFF source.
Bottom line: Converting TIFF to BMP trades compression for raw storage. If your target software requires BMP specifically, this tradeoff is unavoidable. If it accepts TIFF, there is no reason to convert.
The Color Depth Trap: 16-Bit TIFF vs 8-Bit-Per-Channel BMP
This is the conversion issue that most surprises professional photographers, radiologists, and scientific imaging users.
Professional TIFF files are frequently saved at 16 bits per channel — this is the standard in RAW photo editing (Photoshop, Lightroom, Capture One), medical imaging (DICOM-exported TIFFs), and scientific microscopy. A 16-bit-per-channel TIFF represents 65,536 tonal values per color channel, capturing subtle gradients and shadow/highlight detail that 8-bit images cannot.
Standard BMP is 24-bit total — that is, 8 bits per channel (red, green, blue). When a 16-bit-per-channel TIFF is converted to BMP, each channel is downsampled from 16 bits to 8 bits. The top 8 bits of precision per channel are discarded.
For most screen-display purposes, the visual difference is not noticeable — modern display panels render at 8 bits per channel regardless. However, for scientific analysis, radiological measurement, or high-dynamic-range imaging workflows where the numeric pixel values matter (not just their appearance), this precision loss is significant and silent — most converters perform the downsampling without any warning.
If your TIFF contains 16-bit data that must be preserved for analysis, BMP is the wrong output format. TIFF, PNG (also 16-bit capable), or AVIF (12-bit) are the formats that preserve high bit-depth data.
To check if your TIFF is 16-bit: in Photoshop or GIMP, look at Image → Mode. If it shows "16 Bits/Channel," your file will be downsampled on conversion to BMP.
The Multi-Page TIFF Warning
TIFF supports multi-page storage — a single .tiff file can contain dozens or hundreds of individual images. This is standard in:
BMP is strictly a single-image format. When you convert a multi-page TIFF to BMP, only the first page or frame is converted. The remaining pages are silently discarded.
If your TIFF is multi-page, you must either extract the specific page you need before converting, or use a tool that can export each page to a separate BMP file (ImageMagick — covered in Method 4 — handles this correctly).
Method 1: Convert TIFF to BMP in Your Browser (No Upload)
The fastest and most private way to convert TIFF to BMP free is a browser-based tool that processes your files entirely on your device using WebAssembly. Unlike FreeConvert, CloudConvert, Convertio, or Zamzar — all of which upload your files to their servers — PhotoFormatLab's TIFF to BMP converter converts everything locally on your machine.
Steps:
Works on Chrome, Firefox, Safari, and Edge on Windows, Mac, Linux, iPhone, and Android. No account required, no file size limits, and batch conversion is fully supported.
Why privacy matters for TIFF files: TIFF is the standard format for professional photography, medical imaging, scanned documents, and scientific data — many of which contain confidential information. Uploading TIFF files to a server-based converter transmits that content to third-party infrastructure you do not control. Browser-based conversion ensures your files never leave your device.
For more on how browser-based image conversion works and why it is more secure than server uploads, see our guide on converting images without uploading to a server.
Method 2: Convert TIFF to BMP on Windows Using Paint
Windows Paint can open TIFF files and save them as BMP with no additional software. This is the simplest option for Windows users converting single files.
Steps:
16-bit TIFF note: Windows Paint automatically converts 16-bit TIFF to 8-bit-per-channel output. No warning is shown. If your TIFF is 16-bit and precision matters, use Method 4 (ImageMagick) which gives explicit control over the downsampling behavior.
Multi-page note: Paint opens only the first page of a multi-page TIFF. Use ImageMagick to extract all pages.
Batch conversion with Paint: Paint does not support batch processing. For multiple files, use Method 1 (browser-based) or Method 4 (ImageMagick).
Method 3: Convert TIFF to BMP on macOS Using Preview
macOS Preview opens TIFF files natively and can export them as BMP.
Steps for a single file:
Steps for batch conversion on macOS:
Preview batch-exports all selected images simultaneously. For 50–500 files, this is significantly faster than one-at-a-time conversion.
Multi-page TIFF on macOS: Preview correctly displays all pages of a multi-page TIFF in the sidebar. You can select specific pages for export using the sidebar before running File → Export Selected Images — this lets you export individual pages as separate BMP files.
Method 4: Convert TIFF to BMP with ImageMagick (CLI)
ImageMagick gives the most control over bit depth, background fill, multi-page extraction, and automated batch processing. It is the preferred tool for developers and users with precise requirements.
Installation
macOS (Homebrew):
```bash
brew install imagemagick
```
Ubuntu/Debian:
```bash
sudo apt install imagemagick
```
Windows: Download from imagemagick.org and add to PATH.
Convert a Single TIFF to BMP
```bash
magick input.tiff output.bmp
```
For explicit 24-bit BMP (maximum legacy compatibility):
```bash
magick input.tiff -depth 8 -type TrueColor BMP3:output.bmp
```
The BMP3: prefix writes the BMP 3.x format — the most widely supported version across legacy industrial and Windows applications.
Handle 16-Bit TIFF Downsampling Explicitly
If your TIFF is 16-bit per channel, control the downsampling:
```bash
magick input.tiff -depth 8 -type TrueColor BMP3:output.bmp
```
This is identical behavior to the default — the -depth 8 flag makes it explicit and documentable in automated pipelines.
Extract All Pages From a Multi-Page TIFF
To export each page as a separate BMP:
```bash
magick input.tiff -scene 1 output-%03d.bmp
```
This generates output-001.bmp, output-002.bmp, etc. — one file per page. The %03d zero-pads to three digits so filenames sort correctly.
To extract only a specific page (e.g., page 2, zero-indexed):
```bash
magick 'input.tiff[1]' output-page2.bmp
```
Batch Convert an Entire Folder
```bash
for f in *.tiff; do
magick "$f" -depth 8 -type TrueColor BMP3:"${f%.tiff}.bmp"
done
```
Windows PowerShell:
```powershell
Get-ChildItem *.tiff | ForEach-Object {
magick $_.FullName -depth 8 -type TrueColor ("BMP3:" + $_.BaseName + ".bmp")
}
```
TIFF vs BMP: Format Comparison
| Feature | TIFF | BMP |
|---|---|---|
| Compression | LZW, ZIP, PackBits, None | None |
| Typical file size | Medium to very large | Very large |
| Color depth | 1, 8, 16, 32-bit per channel | 1, 4, 8, or 24-bit total |
| Transparency (alpha) | Full support | None (24-bit) / Limited (32-bit) |
| Multi-page support | Yes | No |
| Metadata (EXIF/IPTC) | Full support | None |
| Browser support | Limited | None |
| Legacy software support | Broad | Excellent (Windows-centric) |
| Print/archival use | Industry standard | Not suitable |
| Web delivery | Not suitable | Not suitable |
Should You Convert TIFF to BMP, or Stay with TIFF?
For every use case except legacy software compatibility, TIFF is a better format than BMP in every measurable way: optional lossless compression (making files smaller), 16-bit color depth (preserving precision), multi-page support, full transparency, and comprehensive metadata.
Converting TIFF to BMP only makes sense when a specific target application explicitly requires BMP and refuses to accept TIFF. Before converting, test whether your target software opens the TIFF directly — many industrial and scientific applications that once required BMP have added TIFF support in software updates over the past decade.
If you need a smaller file than either TIFF or BMP for delivery or storage, the right move is to convert the TIFF to a modern format rather than to BMP. For photographs going to screens or the web, TIFF to JPG conversion produces files 10–15× smaller than BMP with minimal visible quality loss. For graphics with transparency, TIFF to PNG conversion is lossless, supports alpha, and produces files 3–8× smaller than BMP. For maximum web compression in 2026, TIFF to WebP conversion reduces file sizes 80–90% compared to uncompressed TIFF.
For the reverse operation — converting BMP files to TIFF for archival or professional editing — see our guide on how to convert BMP to TIFF (coming soon), which covers when TIFF is the right archival target and which compression mode to choose.
For other BMP output conversions and the common file size patterns, our PNG to BMP guide covers the transparency and size tradeoffs in detail.
Frequently Asked Questions
Why does my BMP file end up larger than my TIFF file?
TIFF files are frequently stored with LZW or ZIP compression, which meaningfully reduces their size. BMP has no compression at all — it stores every pixel as 3 raw bytes of color data. A 1920×1080 BMP is always exactly 5.93 MB regardless of what the source image looked like, while a TIFF of the same image might be 2–8 MB depending on compression settings and image content. Flat-color graphics compress especially well in TIFF, so converting them to BMP can produce files 4–10× larger than the source TIFF.
My TIFF file is 16-bit. Will converting to BMP lose data?
Yes. Standard BMP supports only 8 bits per channel (24-bit total), while professional TIFF files are often 16 bits per channel (used in RAW photo editing, medical imaging, and scientific microscopy). Converting a 16-bit TIFF to BMP silently discards the upper 8 bits of each channel. For screen display this is usually invisible, but for scientific analysis, radiological measurement, or any workflow where exact pixel values matter, this precision loss is significant. If you need to preserve 16-bit data, keep the TIFF.
My TIFF has multiple pages — will they all convert?
Not with single-image converters. BMP is a single-frame format. Most tools (including Windows Paint and basic online converters) will extract only the first page and silently discard the rest. Use macOS Preview's Export Selected Images to choose specific pages, or ImageMagick with the -scene flag to extract all pages as separate BMP files.
What is the best free TIFF to BMP converter online?
A browser-based converter that processes files locally without uploading is the best choice for TIFF files, which often contain professional, medical, or confidential content. PhotoFormatLab's TIFF to BMP converter is free, converts entirely in your browser using WebAssembly, supports batch conversion, and never uploads your files to any server. Server-based tools like FreeConvert, CloudConvert, and Convertio upload TIFF files to their infrastructure before converting.
Can I batch convert multiple TIFF files to BMP at once?
Yes. PhotoFormatLab handles batch conversion — drag multiple TIFF files and download all BMPs as a ZIP. ImageMagick's shell loop converts entire folders in one command. macOS Preview's Export Selected Images handles batches of 100+ files at once.
Is TIFF to BMP a lossless conversion?
For 8-bit-per-channel TIFF source files, yes — both formats are lossless (uncompressed pixel data). However, if your TIFF is 16-bit per channel, the conversion to 8-bit-per-channel BMP does lose precision, making it technically lossy with respect to the source bit depth. Transparent areas from TIFF alpha channels are also discarded (standard 24-bit BMP has no alpha support), which counts as information loss for images with transparency.
Jordan builds privacy-focused web tools. He created PhotoFormatLab to make image conversion free, instant, and fully browser-based — no file uploads, no accounts, no watermarks. About PhotoFormatLab →