TIFF to ICO Crop Converter

Load a TIFF, drag the crop handles to isolate the exact region you need, preview the result, then download a multi-resolution ICO file with 16×16, 32×32, and 48×48 variants. 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 into a multi-resolution ICO file. No server upload is required. The full workflow — loading, cropping, and ICO encoding — runs entirely in client-side JavaScript using the HTML5 Canvas API. TIFF files are decoded using URL.createObjectURL combined with img.decode(), ensuring the canvas always receives complete pixel data before the crop overlay is drawn. The output is a single .ico file containing 16×16, 32×32, and 48×48 pixel variants, the three sizes expected by Windows and web browsers for favicons and application icons.

Who This Is For

  • Web developers creating a favicon from a TIFF logo or brand asset
  • Windows application developers who need an ICO file from a high-quality TIFF source
  • Designers who want to extract a specific region of a TIFF to use as an icon
  • Anyone who needs to convert a TIFF to ICO without installing Photoshop or dedicated icon software

TIFF vs ICO: Format Comparison

PropertyTIFFICO
Primary usePrint, archiving, professional editingApplication icons, favicons
File sizeVery large — uncompressed pixelsVery small — typically under 10 KB
Multiple resolutionsPossible via multi-page TIFFNative — one file contains multiple sizes
Transparency supportYes (alpha channel)Yes (1-bit mask or 32-bit ARGB)
Browser/OS supportNot natively in browsersUniversal — Windows, browsers, all OS
Color depth8, 16, or 32-bit per channelUp to 32-bit ARGB
Best forHigh-quality source filesIcons, favicons, taskbar images

Frequently Asked Questions

What sizes are in the output ICO file?
The tool encodes three sizes into a single ICO file: 16×16 (browser tab favicon), 32×32 (desktop shortcut), and 48×48 (Windows Explorer and taskbar). All three are derived from your cropped region by downscaling with the canvas API.
Should I crop to a square?
Yes — ICO images are always square. If your crop selection is not square, the tool will still generate the ICO, but the image will be stretched or squashed to fit the square icon sizes. Cropping to a square region first produces the most accurate result.
How precise is the crop tool?
The crop operates at native pixel accuracy on the original TIFF dimensions. The canvas is scaled to fit your screen for display, but coordinates are mapped back to the full-resolution image before the ICO is generated.
Can I move the crop selection after setting it?
Yes — click and drag inside the crop rectangle (away from the handles) to reposition it anywhere within the image. Handles resize; the interior pans.
What browsers are supported?
All modern browsers — Chrome, Firefox, Edge, Safari (desktop and mobile). The tool uses standard HTML5 Canvas and Blob APIs that have been universally supported since 2015.
Is there a file size limit?
There is no server-imposed limit because no upload occurs. The practical limit is your browser's available RAM. Since the ICO output is at most 48×48 px, the output file is always small regardless of input TIFF size.