Step-by-step instructions
- 1
Convert on Mac with Preview
Open the TIFF in Preview. Go to File → Export. Choose PNG from the Format dropdown. Click Save. Preview handles multi-layer and multi-page TIFFs — it exports the visible state. For CMYK TIFFs from professional workflows, Preview converts to RGB automatically.
Go to converter - 2
Convert on Windows with Paint or Photos
Right-click the TIFF → Open With → Paint → File → Save As → PNG picture. Or open in Photos and save as PNG. For better control and transparency preservation, use GIMP (free) or FFmpeg: `ffmpeg -i input.tiff output.png`.
- 3
Batch convert with FFmpeg or ImageMagick
FFmpeg: `ffmpeg -i input.tiff output.png`. Batch on Linux or Mac: `for f in *.tiff; do ffmpeg -i "$f" "${f%.tiff}.png"; done`. ImageMagick: `convert input.tiff output.png` or batch: `mogrify -format png *.tiff`. ImageMagick handles multi-page TIFFs by creating numbered PNG files.
- 4
Verify the conversion
Check that colours look correct — CMYK-to-RGB conversion may shift colours slightly. If the TIFF had layers from Photoshop, only the flattened image appears in PNG. For TIFF files with embedded ICC colour profiles, ensure your converter preserves or converts the profile to sRGB for correct web display.
Why convert TIFF to PNG?
TIFF files from scanners, cameras, or print workflows are enormous and incompatible with web browsers. Converting to PNG gives you a lossless, universally compatible file that's 30–50% smaller than TIFF while preserving every pixel.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Does TIFF to PNG lose quality?
What is the difference between TIFF and PNG?
Can I convert a multi-page TIFF to PNG?
No account. No upload. Works in any browser.