TIFF to PNG Crop Converter
Load a TIFF, drag the crop handles to define exactly the area you need, preview the result, then download a lossless PNG. Everything runs in your browser — your image never leaves your device.
Drop a TIFF here
or Browse Files · TIFF / TIF supported
What This Tool Does
This tool loads a TIFF image directly in your browser, presents an interactive crop overlay with draggable handles, and converts the selected area to a lossless PNG file. No server upload is required. The full workflow — loading, cropping, and PNG encoding — runs entirely in client-side JavaScript using the HTML5 Canvas API. TIFF files are decoded using URL.createObjectURL combined with img.decode(), which resolves only after the image is fully decoded and ready to paint, ensuring the canvas always receives complete pixel data before the crop overlay is drawn. The output is a lossless PNG — the most versatile and widely supported lossless web image format — with full preservation of any alpha channel transparency present in the source.
Who This Is For
- Web developers who need a web-ready PNG from a high-resolution TIFF source without a full design tool
- Photographers extracting a specific region of a TIFF scan and saving it as a portable lossless PNG
- Designers preparing cropped TIFF assets for use in digital documents, presentations, or websites
- Anyone who needs to trim and convert a TIFF to PNG without installing Photoshop or GIMP
TIFF vs PNG: Format Comparison
| Property | TIFF | PNG |
|---|---|---|
| Compression | Lossless (or uncompressed) | Lossless (DEFLATE) |
| File size | Very large — often uncompressed | Smaller — DEFLATE compression applied |
| Browser support | Not natively displayed in browsers | Universal — every browser since the 1990s |
| Transparency | Full alpha channel | Full alpha channel (RGBA) |
| Color depth | 8, 16, or 32-bit per channel | Up to 16-bit per channel |
| Metadata support | Extensive — ICC, EXIF, XMP | Basic — tEXt chunks, sRGB, ICC |
| Best for | Print, archiving, professional editing | Web, UI, icons, screenshots, transparent images |
