Skip to content

Convert TIFF to JPG

Scanner output and studio TIFFs are enormous and refuse to open in half your apps — turn them into light, shareable JPGs, with nothing stored.

  • Never stored
  • No queue, no waiting
  • No signup, no watermark

How it works

1

Add your TIFF files

Drop any number of .tif or .tiff files onto the page.

2

Pick quality

The slider trades size against fidelity — 85% is right for most scans.

3

Download

Save files one by one, or everything as a ZIP.

TIFF is a container, not a format

Almost everything surprising about converting a TIFF comes from one fact: TIFF does not describe how the pixels are stored, it describes where to find out. A .tif can be uncompressed, LZW, Deflate, PackBits, JPEG or CCITT Group 4 fax; it can be colour, greyscale, bilevel or CMYK; 8, 16 or 32 bits per channel; with or without an alpha channel; arranged in strips or tiles; with rows stored top-down or bottom-up; and it can hold many images in one file. Two files with the same extension can have almost nothing in common, which is why TIFF support varies so much between programs.

Several of those get normalised on the way to JPEG, and it is worth knowing which. CMYK becomes RGB, because JPEG in practice is an RGB format and the picture has to be converted — done here without the press profile that a studio file was separated against, so the colours will be close and not exact. 16 bits per channel becomes 8, which is invisible in a finished picture and matters a great deal if you intended to keep editing: the extra bits are headroom for adjusting exposure and colour without banding, and they are gone. Transparency is flattened, because JPEG has no alpha.

A multi-page TIFF — the usual output of a document scanner or a fax — converts its first page only. There is no way around it in a single-image format: a twelve-page scanned contract needs twelve JPEGs, and this produces one. That is the most common disappointment on this page and it is worth checking before you assume the rest of the document failed.

What you gain is size, and the margin is usually enormous. An uncompressed TIFF stores every pixel literally — a 24-megapixel photograph is around 72 MB before anything else — so the same picture as a good-quality JPEG lands somewhere near 5 MB. For a scanned document at 300 DPI in colour, the ratio is frequently more dramatic still.

When you want something else

For a multi-page TIFF, use something that knows there are several pages. tiffsplit in.tif page_ from libtiff separates them, ImageMagick's magick in.tif out-%d.jpg writes one JPEG per page in a single command, and if the pages are a document rather than photographs they probably want to be one PDF rather than a folder of pictures.

For anything colour-critical, this conversion should not happen in a browser at all. A CMYK TIFF separated for a press carries an ICC profile describing what its numbers mean, and converting without applying it is guesswork — magick in.tif -profile sRGB.icc out.jpg does it properly, and libvips does the same at a fraction of the memory on very large scans. Scientific 32-bit TIFFs and anything with layers belong in the software that made them.

Frequently asked questions

Why are TIFF files so huge?

TIFF usually stores pixels uncompressed or losslessly — a single A4 scan at 600 DPI runs to hundreds of megabytes. That is right for archiving and wrong for sharing.

Are multi-page TIFFs supported?

The first page converts. Multi-page TIFFs are really documents — for those, a PDF is usually the better destination.

Is my scan stored anywhere?

No — nothing is stored at any point. Contracts and ID scans are never stored.

What quality should I use?

For text scans 85-90% keeps every letter crisp. For photo scans 80% is usually transparent.

What TIFF variants are supported?

The common ones — uncompressed, LZW and Deflate, RGB and grayscale, 8 and 16 bit. Exotic scientific variants may not decode.

Good to know: Multi-page TIFFs convert their first page. CMYK studio TIFFs are converted through RGB — proofing colours should stay in professional tools.

Put this tool on your website

Free for any blog, class page or help article. Paste one snippet and your visitors can use it right on your page.