How to Convert TIFF to JPG: 5 Free Methods in 2026
Why Convert TIFF to JPG?
TIFF (Tagged Image File Format) is the gold standard for professional photography, scanning, and print production. A single TIFF file preserves every pixel of image data with zero compression artifacts, which makes it ideal for archival storage and high-end printing. But that quality comes at a cost: file size.
A typical TIFF photograph from a modern scanner or camera weighs 20 to 80 MB. The same image saved as a high-quality JPG is 1 to 5 MB — an 80-95% reduction in file size. When you need to email photos, upload them to a website, share them on social media, or free up storage space, converting TIFF to JPG is the practical solution.
Here are the most common reasons people convert TIFF to JPG:
The key question is how much quality you lose. At 90-95% JPG quality, the visual difference between TIFF and JPG is imperceptible to the human eye for photographs. You lose the ability to edit non-destructively (TIFF preserves layer data in some workflows), but for viewing and sharing, JPG at high quality is indistinguishable from the original.
Method 1: Convert TIFF to JPG in Your Browser (Free, Private)
The fastest and most private method is using a browser-based converter like PhotoFormatLab's TIFF to JPG converter. This approach processes your files entirely on your device — no uploads, no server storage, no privacy risk.
Step-by-Step Instructions
Why This Method Is Best
This is especially important for TIFF files, which often contain sensitive content — scanned legal documents, medical records, professional photographs, and archival materials. Uploading these to a server-based converter introduces unnecessary privacy risk. Learn more about why browser-based conversion is safer.
Method 2: Convert TIFF to JPG on Windows
Windows has built-in options for TIFF to JPG conversion, though they are limited for batch processing.
Using Microsoft Paint
Paint converts at a fixed quality level and does not allow batch processing. For a single file, it works. For multiple files, use Method 1.
Using Windows Photos App
The Photos app also does not support batch conversion. For converting folders of TIFF files on Windows, browser-based tools are significantly more efficient.
Method 3: Convert TIFF to JPG on Mac
macOS has stronger built-in image conversion support through Preview.
Using Preview
Batch Conversion with Preview
Preview supports batch conversion, which is a significant advantage over Windows:
This works for smaller batches. For hundreds of files, Preview can become slow, and you have limited control over compression settings. For large-batch professional workflows, PhotoFormatLab's batch converter offers more control and faster processing.
Method 4: Convert TIFF to JPG Using Command Line
For developers and power users, command-line tools offer maximum control.
ImageMagick (Windows, Mac, Linux)
Install ImageMagick, then convert a single file:
```bash
magick input.tiff -quality 92 output.jpg
```
Batch convert all TIFF files in a folder:
```bash
for file in *.tiff; do magick "$file" -quality 92 "${file%.tiff}.jpg"; done
```
FFmpeg
FFmpeg can also handle the conversion:
```bash
ffmpeg -i input.tiff -q:v 2 output.jpg
```
The -q:v flag sets quality (2 is high quality, 31 is lowest).
Command-line tools are powerful but require installation and technical knowledge. They are best suited for automated workflows and scripting.
Method 5: Convert TIFF to JPG with Python
If you are working in a Python environment, Pillow makes TIFF to JPG conversion straightforward:
```python
from PIL import Image
import os
def convert_tiff_to_jpg(input_path, output_path, quality=92):
img = Image.open(input_path)
if img.mode in ('RGBA', 'LA', 'P'):
img = img.convert('RGB')
img.save(output_path, 'JPEG', quality=quality)
# Batch convert all TIFF files in a directory
input_dir = './tiff_files'
output_dir = './jpg_files'
os.makedirs(output_dir, exist_ok=True)
for filename in os.listdir(input_dir):
if filename.lower().endswith(('.tiff', '.tif')):
input_path = os.path.join(input_dir, filename)
output_path = os.path.join(output_dir, filename.rsplit('.', 1)[0] + '.jpg')
convert_tiff_to_jpg(input_path, output_path)
```
Note the img.convert('RGB') step — TIFF files may contain transparency (alpha channel), which JPG does not support. Converting to RGB ensures the output renders correctly.
TIFF vs JPG: Understanding the Trade-Offs
Before converting, it helps to understand exactly what you gain and what you lose:
| Feature | TIFF | JPG |
|---|---|---|
| Compression | Lossless (uncompressed or LZW) | Lossy |
| Typical file size (12 MP photo) | 30-70 MB | 2-5 MB |
| Color depth | 8, 16, or 32-bit | 8-bit |
| Transparency | Yes (alpha channel) | No |
| Layers | Yes (in some workflows) | No |
| Metadata (EXIF) | Full support | Full support |
| Browser display | Limited | Universal |
| Email friendly | No (too large) | Yes |
| Print quality | Excellent | Good at high quality |
| Editing flexibility | Non-destructive | Destructive (each save recompresses) |
The bottom line: TIFF is for storage, editing, and printing. JPG is for sharing, displaying, and the web. Keep your TIFF originals and create JPG copies for distribution.
Choosing the Right JPG Quality Setting
The quality setting has a dramatic impact on both file size and visual fidelity. Here is a practical guide:
| Quality | File Size (vs TIFF) | Visual Quality | Best For |
|---|---|---|---|
| 95-100% | 5-10% of TIFF | Virtually identical | Archival JPG copies, professional work |
| 90-94% | 3-5% of TIFF | Imperceptible loss | General photography, document scanning |
| 80-89% | 2-3% of TIFF | Minimal loss, visible on close inspection | Web images, social media |
| 70-79% | 1-2% of TIFF | Noticeable compression artifacts | Thumbnails, previews |
| Below 70% | <1% of TIFF | Clearly degraded | Only when file size is critical |
For scanned documents, 90% quality preserves all readable text and fine detail. For photographs, 92% is the sweet spot where file size drops dramatically but quality remains excellent.
When Not to Convert TIFF to JPG
There are situations where keeping the TIFF format is the right choice:
For these use cases, consider converting to WebP (smaller files with better quality than JPG) or PNG (lossless compression with smaller files than TIFF) instead.
Batch Converting Scanned Documents
One of the most common TIFF to JPG workflows involves scanned documents. Scanners often output multi-page TIFF files, and converting them to JPG makes them easier to share and store.
Tips for batch document scanning conversion:
PhotoFormatLab's batch converter handles multi-file TIFF conversion efficiently. Drop your entire folder of scanned documents, set the quality level once, and download everything as a ZIP file.
Converting TIFF to Other Formats
JPG is the most common target format for TIFF conversion, but it is not always the best choice. Here is when to consider alternatives:
Each conversion is available on PhotoFormatLab — all processed in your browser with no uploads.
Frequently Asked Questions
Does converting TIFF to JPG reduce image quality?
Yes, because JPG uses lossy compression. However, at 90-95% quality, the difference is imperceptible for photographs and scanned documents. The visual quality at these settings is indistinguishable from the TIFF original when viewed on screen. Keep your TIFF originals for archival purposes and use the JPG copies for sharing and web use.
What is the best JPG quality setting for converted TIFF files?
For photographs, use 90-92% quality. This provides an excellent balance between file size reduction (typically 95% smaller than the TIFF) and visual fidelity. For scanned text documents, 90% is sufficient — text remains sharp and readable. For professional or archival JPG copies, use 95%.
Can I convert a multi-page TIFF to individual JPG files?
Yes. Multi-page TIFF files (common from document scanners) can be split into individual JPG images during conversion. PhotoFormatLab handles this automatically — each page becomes a separate JPG file that you can download individually or as a ZIP archive.
Is it safe to convert TIFF files online?
It depends on the converter. Most online converters upload your files to their servers, which means your images are stored on third-party infrastructure. This is risky for sensitive documents like medical records, legal papers, or personal photographs. Browser-based converters like [PhotoFormatLab](/) process files entirely on your device, so your TIFF files never leave your computer. Read our guide on whether it is safe to convert images online.
How do I convert TIFF to JPG without losing transparency?
You cannot — JPG does not support transparency. If your TIFF file has transparent areas, they will be filled with white (or another solid color) during conversion. To preserve transparency, convert to PNG or WebP instead. Both formats support alpha channels.
What is the difference between TIFF and TIF file extensions?
There is no difference. .tiff and .tif are the same format — the shorter extension is a legacy from Windows systems that originally limited extensions to three characters. Both open and convert identically. Our converter accepts both extensions.
For more format comparisons, read our TIFF vs JPG deep dive or our guide to the best image format for printing.