More about converting SVGZ to HEIC
SVGZ is a gzip-compressed SVG file - the same XML vector data as a regular SVG, but compressed at the file-system layer using DEFLATE (RFC 1952). Designers ship SVGZ when serving large vector illustrations directly from a web server, because modern browsers transparently decompress them via the Content-Encoding header. A 200KB SVG with hundreds of paths often shrinks to 35-50KB as SVGZ, which matters for above-the-fold hero illustrations on mobile-first sites with a Lighthouse budget.
Converting SVGZ to HEIC requires decompressing the gzip layer first, then rasterising the underlying SVG - our converter handles both steps in one upload, defaulting to 300 DPI at the SVG's natural viewBox dimensions. The output is a fixed-resolution raster in Apple's native photo format: ideal when web-pipeline vector assets need to appear in an iPad design review, an Apple Photos mood board, or an iCloud-synced asset library. HEIC also preserves alpha, so illustrations rasterised on transparent backgrounds keep their cutout - the key advantage over a JPG render.
Watch out for embedded raster fills inside the SVG - if the SVGZ references a base64-encoded JPEG or PNG inside an
When you'd use this
Reasons to convert SVGZ to HEIC usually come down to compatibility, file-size, or specific feature requirements. Common situations:
- An app or platform only accepts HEIC uploads.
- You need a feature unique to HEIC (e.g. transparency, vector scaling, animation, multi-page pages, etc.) that SVGZ doesn't provide.
- You're optimising file size — modern formats often produce smaller files than the older format you started with.
- You need a single archival format across a project so files behave consistently in the same viewer.
How to do it in heic.now
- Open the SVGZ → HEIC tool on heic.now.
- Drag your SVGZ file onto the drop zone, or click Select files. You can drop a whole folder of files at once.
- The output is fixed to HEIC. If the format supports extra options (page size, transparency background, quality, EXIF stripping), tweak them in the right-hand panel.
- Click Convert. The job runs on our server and finishes in a few seconds for typical photos.
- Download the result. Files stay in storage for 24 hours and are then permanently deleted.
The entire flow is free for the first 10 jobs per day with no signup required. A free account doubles that quota; a premium plan removes the limit entirely.
Tips and common pitfalls
- Rasterise at 300 DPI for print previews, 150 DPI for screen review, or match the destination's pixel dimensions exactly to avoid wasted bytes.
- Transparent backgrounds survive - HEIC supports alpha, so skip the flatten step you'd need for a JPG render.
- If the SVGZ contains
elements, the embedded raster's native resolution caps the effective sharpness regardless of your DPI setting. - Outline all fonts before zipping the SVG, otherwise the rasteriser falls back to system fonts and glyph shapes shift.
- Test by decompressing the SVGZ to SVG with gunzip first to inspect the XML - some scripts embed unsupported filter primitives that rasterisers skip.