SVG
Scalable Vector GraphicsUsed for resolution-independent illustrations.
- Family
- Vectors
- MIME
- image/svg+xml
Convert SVG to TIFF online and see exactly what rasterization at a fixed canvas changes, what TIFF still can't promise, and how to verify the result.
Rasterizing SVG fixes every path and shape onto one pixel grid before that canvas is encoded as TIFF. Once that happens, scaling the derivative back up cannot recover the original curves. SVG import parses XML into a styled graphics tree of paths, text, viewBox coordinates, transforms, clipping, filters, links, and external resources. TIFF output can describe high-bit-depth pixels, alpha, varied compression, and multiple image directories, but the chosen writer profile determines which of those features is present.
Starting model: XML vector artwork made from paths, shapes, paint, text, and optional embedded assets. Rendered result: a flexible raster container able to hold high bit depth, multiple pages, alpha, and varied compression.
Used for resolution-independent illustrations.
Designed for raster pictures made of individually stored pixels.
Use TIFF when the destination needs pixels; keep SVG for logos, diagrams, or print work that must remain resolution independent.
Zoom far in and inspect path smoothness, text, viewBox, clipping, and external references.
Step through every page and check bit depth, color mode, the resolution tag, compression, and alpha.
Tracing a bitmap produces approximate paths rather than restoring original geometry; fonts and filters may render differently.
Not every app reads the same TIFF subset, so multi-page files, CMYK color, layers, or an unusual compression choice can all fail to open somewhere.
a flexible raster container able to hold high bit depth, multiple pages, alpha, and varied compression is what gets written, labeled as image/tiff. Whether that actually opens depends on the receiving application, not on the file extension.