SVGZ
SVGZ vector graphicUsed for path-based artwork meant to scale without pixelating.
- Family
- Vectors
- MIME
- image/svg+xml
Convert SVGZ to PNG online and see exactly what rasterization at a fixed canvas changes, what PNG still can't promise, and how to verify the result.
The paths and shapes in SVGZ are rasterized onto a fixed pixel grid, then that canvas is encoded as PNG. Scaling the derivative later cannot recover the original curves. SVGZ is first decompressed to SVG XML, then its viewBox, path tree, styles, text, filters, clipping, and external references are interpreted as vector content. PNG output preserves the exact raster samples with optional full alpha and color metadata, though file size, palette reduction, the lack of animation, and profile handling all still vary by writer.
Source material - An SVG XML document wrapped in Gzip compression for smaller transfer. Rendered deliverable - Pixels written losslessly with a full alpha channel available.
Used for path-based artwork meant to scale without pixelating.
Designed for lossless images and transparency.
PNG is right once the destination genuinely needs pixels. Logos, diagrams, or print work that must stay resolution independent still belong in SVGZ.
Decompress and validate the SVG, then inspect viewBox, paths, text, filters, clipping, links, and referenced assets.
Zoom to 100% on transparent edges, gradients, and small text, and confirm the exact pixel dimensions.
Some uploaders and editors do not decompress SVGZ automatically, and external assets or fonts remain separate dependencies.
PNG is a poor fit for photographic detail, and even without any JPEG-style loss, palette reduction can visibly simplify a smooth gradient.
pixels written losslessly with a full alpha channel available is what gets written, labeled as image/png. Whether that actually opens depends on the receiving application, not on the file extension.