TIFF to SVG Crop Converter
Load a TIFF, drag the crop handles to define exactly the area you need, preview the result, then download an SVG containing your cropped image. 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 an SVG file. No server upload is required. The full workflow — loading, cropping, and SVG generation — 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. The output is a valid SVG file that embeds the cropped region as a base64-encoded PNG inside an <image> element, with the SVG viewport set to match the exact crop dimensions. This makes the file fully compatible with Figma, Adobe Illustrator, Inkscape, and all modern web browsers.
Who This Is For
- Designers who need to import a cropped TIFF region into an SVG-based design tool like Figma or Illustrator
- Web developers embedding a raster crop as an SVG for resolution-independent display at any screen density
- Developers who need a self-contained SVG asset that carries its own image data without external file references
- Anyone who needs to trim and wrap a TIFF region in SVG without installing desktop software
TIFF vs SVG: Format Comparison
| Property | TIFF | SVG |
|---|---|---|
| Type | Raster (pixel grid) | Vector (XML shapes) or embedded raster |
| Scalability | Fixed resolution — pixelates when enlarged | Infinite — crisp at any size |
| File size | Very large — uncompressed pixels | Varies — embedded raster is base64-encoded |
| Browser support | Not natively displayed in browsers | Native — all browsers since 2011 |
| Editability | Pixel editing only | XML text — editable in any text editor |
| Transparency | Full alpha channel | Full alpha channel (via embedded PNG) |
| Best for | Print, archiving, professional editing | Web UI, icons, design assets, diagrams |
