SVGZ
SVGZ vector graphicUsed for path-based artwork meant to scale without pixelating.
- Family
- Vectors
- MIME
- image/svg+xml
Free SVGZ to BMP conversion online, with the real rasterization at a fixed canvas behavior, what gets lost, and a concrete way to check the output.
The paths and shapes in SVGZ are rasterized onto a fixed pixel grid, then that canvas is encoded as BMP. 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. The BMP writer commits one rectangular pixel surface with explicit row order and color depth; it is aimed at simple bitmap interchange, not layered or multi-resolution artwork.
Source material - An SVG XML document wrapped in Gzip compression for smaller transfer. Rendered deliverable - A broadly understood bitmap with straightforward pixel storage and little compression.
Used for path-based artwork meant to scale without pixelating.
Designed for pixel-based artwork, scans, and photographs.
BMP 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.
Confirm dimensions, color depth, orientation, and whether the receiving app reads transparency.
Some uploaders and editors do not decompress SVGZ automatically, and external assets or fonts remain separate dependencies.
BMP derivatives are often much larger than web images and may encode alpha or row order differently between apps.
The writer builds a broadly understood bitmap with straightforward pixel storage and little compression and labels the result as image/bmp. The receiving application - Not the extension alone - Is the final compatibility test.