Convert HEIF to TIFF

Converting HEIF to TIFF produces a plain uncompressed baseline file — the one variant every TIFF reader accepts — which is why it is also very large: about 48 MB for a twelve-megapixel photograph. It runs in your browser, and it is almost always done because a lab or an archive asked for TIFF.

  • Where it runs In your browser. The file is never uploaded.
  • Lossless Nothing is discarded. The TIFF holds exactly what the HEIF held.
  • File size limit Up to 100 MB per file, free, without an account.

Up to 100 files at once. Mixed formats are fine.

Somebody else chose TIFF, and this page assumes so

Nobody converts a phone photograph to TIFF for their own convenience. The requirement comes from outside: a photo book supplier whose upload form lists TIFF, a lab, a journal submission with a figure specification, an archive with a deposit policy, a piece of instrument software that reads one format. TIFF has been in use since Aldus published it in 1986, and Adobe's since it bought Aldus in 1994; it is what those institutions standardised on.

That framing matters because it decides what a good result is. You are not looking for the best picture or the smallest file — you are looking for a file the recipient will not bounce. This converter is built for that: it writes the most boring, most universally readable TIFF there is.

Uncompressed baseline, deliberately

TIFF is less a format than a filing system for images, and its readers agree on less than you would hope. LZW is patent-free and broadly supported. Deflate is not universally supported. JPEG-in-TIFF is really a different image inside a TIFF wrapper, and plenty of software that claims TIFF support chokes on it.

Somebody converting to TIFF is almost always feeding something particular, and the one thing every such reader accepts is the plain uncompressed baseline. So that is what gets written, with no compression choice offered, because offering one would mean offering a way to produce a file the recipient rejects.

Four bytes a pixel, and the arithmetic that follows

With nothing compressed, the file size is the pixel count times four: red, green, blue and alpha, one byte each. A twelve-megapixel photograph at 4,032 by 3,024 is 12.2 million pixels, so the TIFF lands around 48 MB. The HEIF it came from was likely two or three.

That is a factor of twenty, and it is worth planning for before converting a folder. Twenty photographs is a gigabyte on disk and a slow upload at the other end. If the recipient's specification allows it, the maximum-width field is the only lever that changes this number, because it changes the pixel count itself rather than how the pixels are stored.

RGB comes out, not CMYK

TIFF is one of the few formats on this site that can hold CMYK, and that capability is frequently why a printer asked for it. This converter does not use it: the output is RGB with an alpha channel, because a colour separation is not a format conversion.

Turning RGB into CMYK properly needs to know the press, the paper and the profile, and getting it wrong shifts every colour in the picture in a way nobody notices until a thousand copies are printed. If the specification names CMYK and a profile, do that step in software that understands them, and hand this TIFF to whoever is doing it.

One image, one layer, one page

TIFF supports multiple pages, layers and an editable working state — it is one of the few genuinely editable formats in the registry. None of that appears here. Each HEIF becomes one TIFF holding a single flat image.

The same is true on the way in. A HEIF container may hold several pictures, and the decoder takes the primary one, so a burst does not become a multi-page TIFF. If you need several photographs in one file, that is a job for an editor or for ImageMagick, and a folder of single-image TIFFs is the right input to it.

Thirty-two bits available, eight written

TIFF is specified to thirty-two bits per channel, matched here only by JPEG XL, and it can carry Lab and greyscale as well as RGB and CMYK. HEIF holds ten bits. On paper this conversion is comfortably lossless in depth terms.

What actually happens is eight bits per channel, because the picture crosses an eight-bit buffer between the decoder and the encoder. For a print of an ordinary photograph this is not the limiting factor — the press is — but if you were converting to TIFF specifically to preserve deep colour, this is not the path that does it.

A rich metadata format arriving empty

TIFF can carry EXIF, XMP, IPTC, an ICC profile and GPS coordinates. The file this page writes carries none of them, because the picture is decoded to raw pixels and re-encoded, and no metadata block survives that.

For print submissions the one to watch is IPTC. Picture desks and photo book systems frequently read captions, credits and copyright from it, and a TIFF with an empty IPTC block reads as an uncredited photograph. If the recipient expects those fields, plan to add them in whatever software you use to check the file before sending it.

No browser will show you the result

TIFF predates the web and no browser ever adopted it, which is the reason the registry records its browser support as none. Opening the converted file in a new tab does not preview it; it downloads it again or shows nothing.

Check the result in something that actually reads TIFF before you send it — Photoshop, Affinity Photo, macOS Preview or ImageMagick all do. That check is worth doing on the first file of a batch rather than on none of them, since the failure you are guarding against is a specification mismatch and it will look identical across all forty.

Large files, converted locally, with the batch in mind

Both halves run in the browser tab, so the photographs are never uploaded. The free tier accepts inputs up to 100 MB each, which no HEIF approaches — but the outputs are the large half of this pair, and a folder of them will occupy real disk space and real time when your browser writes them.

A batch converts with a progress row per file and an "all as ZIP" button once two have finished. Bear in mind that a ZIP of uncompressed TIFFs does compress somewhat, since the raw pixel data has redundancy the format did not exploit, so the archive is smaller than the sum of its contents.

Keep the HEIF; it is the only copy that can make another

This site can read HEIF and cannot write it: decoding is libheif under LGPL-3.0, which a static site can ship with the conditions met, while writing would need an HEVC encoder under GPL, which it cannot. So there is no route from the TIFF back to the format you started with.

That makes the filing decision easy. The HEIF is the original and it costs almost nothing to keep; the 48 MB TIFF is a deliverable for one recipient and can be made again whenever another one asks. Deleting them after the job is finished is the sensible order of operations.

Why the institutions asking for TIFF ask for TIFF

The format dates from 1986, Aldus's until Adobe bought the company in 1994, and it became the default in scanning, print and archiving for reasons that still hold: it stores pixels without discarding any, it can hold several pages, several layers, deep colour and CMYK, and its structure is a set of tagged fields that a reader can skip past when it does not understand them. That last property is why forty-year-old files still open.

Institutions also like that it is boring. There is no version negotiation, no browser dependency and no codec to license — the very things that make HEIF awkward outside the phone that produced it. A specification asking for TIFF is usually asking for a file that will still be readable long after everyone involved has moved on.

What to look at before the TIFF is submitted

Open the first file of any batch in an image editor and check three things: the pixel dimensions, whether the whole subject is in frame, and whether the picture is the right way up. Rotation is the one that catches people out, since a phone records orientation in metadata and this conversion carries no metadata at all.

The reason to look rather than assume is that the TIFF carries no metadata of any kind, so there is no orientation tag in it for a viewer to act on — what you see when you open it is what the recipient will see, with nothing left to interpretation. Checking one file settles it for the batch, and it is a great deal cheaper than a resubmission — particularly with a recipient whose review cycle is measured in weeks rather than minutes.

How to produce a TIFF from a HEIF photograph

  1. Drop the HEIF files here, or click to choose them.
  2. Set a maximum width only if the recipient's specification allows a smaller image.
  3. Download the TIFF files, or take the batch as one ZIP.

HEIF against TIFF: a phone container against a print archive

HEIF compared with TIFF
HEIFTIFF
Full nameHigh Efficiency Image File FormatTagged Image File Format
File extension.heif.tif, .tiff
Media typeimage/heifimage/tiff
CompressionLossy — file size is bought with qualityLossless — nothing is discarded
First published20151986
Published byMPEGAdobe
SpecificationISO/IEC 23008-12TIFF 6.0
LicensingPublished, not standardisedPublished, not standardised
Standing todayCurrentCurrent
Bit depth1032
Colour it can describeYCbCr, wide gamutRGB, CMYK, greyscale, Lab
Opens in a browserSome browsersSome browsers
Considered insteadJPG, AVIFPNG, PDF, DNG

What is lost

TIFF holds a single still image. An animated HEIF keeps its first frame and loses the rest, so a conversion is a way to take a still out of one, not a way to move it.

TIFF holds one page. A multi-page HEIF converts a page at a time rather than in one file.

What survives

Transparency survives. Both HEIF and TIFF store an alpha channel, so a cut-out stays cut out and nothing is filled in behind it.

What the target format adds

TIFF is a working format and HEIF is a finished one. What comes back is editable text and objects rather than a picture of a page, which is usually the reason for the conversion and also where its limits are.

File size and quality

The result is larger than the original and no better. HEIF has already discarded detail, and TIFF stores what is left without discarding more — it prevents further loss rather than undoing the first one.

What each format is for

The two are aimed at different work: HEIF at phones and photography, TIFF at print, scanning and archiving. That is worth weighing before converting, because the reason one exists is usually the reason the other is awkward.

HEIF is MPEG's format, published in 2015. It records 10 bits per channel.

TIFF comes from Adobe and dates from 1986, specified as TIFF 6.0. Adobe Photoshop, Affinity Photo and ImageMagick all read it.

TIFF was published in 1986 and HEIF in 2015. The older one is generally the safer file to hand to somebody; the newer one usually does the job in fewer bytes.

HEIF to TIFF: compression, colour and file size

Are my HEIF files uploaded anywhere?

No. This conversion runs entirely inside your browser, so the file never leaves your device. You can confirm it yourself: open the network tab of your browser's developer tools and convert something. You will see the page load, plus the analytics and advertising the site is paid for with — and nothing carrying your file. The engine behind this particular pair is libheif, the reference decoder for Apple's HEIC; your browser fetches it once and caches it.

What kind of TIFF does this produce?

Plain uncompressed baseline TIFF, RGB with an alpha channel, one image in the file. That is the variant every TIFF reader accepts, which is the only thing worth optimising for when somebody else specified the format.

Why is the TIFF so enormous?

Because nothing is compressed: the file stores four bytes for every pixel. A twelve-megapixel photograph at 4,032 by 3,024 is about 48 MB as TIFF, against two or three as HEIF. That is the trade TIFF exists to make.

Can I choose LZW or Deflate compression?

No. TIFF readers agree on less than you would hope — LZW is broadly supported, Deflate is not universal, and JPEG-in-TIFF is a different image inside a TIFF wrapper. Uncompressed is the one variant nothing refuses, so it is what gets written.

Will the TIFF be in CMYK for my printer?

No. TIFF can hold CMYK and this converter writes RGB. If the print specification asks for CMYK with a named profile, the separation has to be done in software that knows the press, not by a format converter — sending RGB where CMYK was specified usually means the printer converts it with defaults you did not choose.

Can I put several photographs in one TIFF?

Not here. TIFF supports multiple pages and this pair writes a single image per file. Converting a folder gives you one TIFF per photograph, downloadable together as a ZIP.

Why will my browser not show the TIFF I just made?

No browser ever adopted TIFF, so a preview tab will not open it. Check the file in an image editor or a system viewer instead — Photoshop, Affinity Photo, ImageMagick and macOS Preview all read it.

More about these formats

Where these figures come from

The claims this page makes about HEIF and TIFF are checkable, and these are the documents that settle them.

  • TIFF, Revision 6.0

    Library of Congress, Sustainability of Digital Formats — TIFF’s tag structure and its many compression options