Skip to content

TIFF · Lossless · No upload

Remove metadata from TIFF

See every hidden field in your TIFF image, then strip it — with the pixels copied through untouched.

Where TIFF keeps its metadata

In TIFF the metadata is the directory structure itself. An image file directory lists every tag, mixing structural entries such as strip offsets with personal ones such as Artist, Software, GPS and XMP.

How we remove it

We append a freshly built directory containing only the image-critical tags and repoint the file header at it, then zero the old directory and the value heap of everything dropped. The pixel strips never move, so they remain byte-identical.

Worth knowing about TIFF

  • TIFF is common in scanning, archival and print workflows, where files often pass through several organisations — each adding its own identifying tags.
  • Multi-page TIFFs are handled: the whole directory chain is rebuilt and relinked, so every page survives.
  • The cleaned file can be a few bytes larger than the original, because the new directory is appended rather than squeezed into the old one. The image data is unchanged.

Other formats

The same engine handles JPG / JPEG, PNG, WebP, HEIC / HEIF, AVIF, GIF, MP4 and MOV.

Questions

Frequently asked questions

Does removing metadata change my TIFF file's quality?
No. We append a freshly built directory containing only the image-critical tags and repoint the file header at it, then zero the old directory and the value heap of everything dropped. The pixel strips never move, so they remain byte-identical. After each removal we re-read the finished file and, where the browser can decode both, compare every pixel against the original to prove nothing changed.
Where is metadata stored inside a TIFF file?
In TIFF the metadata is the directory structure itself. An image file directory lists every tag, mixing structural entries such as strip offsets with personal ones such as Artist, Software, GPS and XMP.
Is my TIFF file uploaded?
No. The file is parsed and rewritten by JavaScript on your own device. There is no upload endpoint, so there is also no size cap and no queue.
Can I clean several TIFF files at once?
Yes. Drop as many as you like and download them back as a single ZIP. Files are processed one after another, so memory stays flat no matter how big the batch is.