.SVGZ

Файл SVGZ

Compressed Scalable Vector Graphics
Задать вопрос
БЫСТРЫЙ ОТВЕТ

An SVGZ file is an SVG vector image run through gzip compression, typically 50-80% smaller than the plain .svg. The content inside is identical XML. Open it in Inkscape (free) or any modern browser by dragging it into the window. To get the editable .svg back, rename it to .svg.gz and extract with 7-Zip.

Разработчик: W3C (World Wide Web Consortium) - SVG standard; gzip wrapping is part of the SVG spec Категория: Файлы векторных изображений Открыть стандартное MIME: image/svg+xml-compressed
ОТКРЫВАЕТСЯ НА Windows macOS Linux
Связанные: .EMZ · .CDR · .ODG · .VSDX

На этой странице

Проиндексировано расширений: 19k+
Последняя проверка: Jul 7, 2026

Не знаете, что это за файл?

Перетащите любой файл в наш идентификатор - мы прочитаем первые байты, чтобы определить формат.

Идентифицировать файл

Что такое формат файла SVGZ?

.svgz files are supported by most modern web browsers and graphics editing tools natively or via dedicated plugins.

What kind of data can .svgz files store?

Files with the .svgz extension contain compressed SVG images. The .svgz format uses gzip compression, capable of reducing file size by 50-80% compared to the original .svg. SVG stores its data as XML and can be edited in any text editor; .svgz wraps that same XML in a standard gzip stream (identifiable by the 1F 8B magic bytes at the start of the file), making it a binary file despite the readable XML content inside. .svgz files can contain the same 2D vector graphics elements as plain .svg, such as:

  • shapes,
  • color gradients,
  • masks (transparency settings),
  • special image filters.

Can .svgz files be edited?

Original .svg files can be easily edited in even the most basic text editor. .svgz files are compressed and saved in binary format, so the XML cannot be read or edited directly without first decompressing. Dedicated vector editors such as Inkscape and Adobe Illustrator handle .svgz natively. To access the raw XML, decompress using gunzip on the command line or a tool like 7-Zip, which produces an editable .svg file. On modern web servers that apply gzip or Brotli transfer compression automatically, serving plain .svg is often preferred over .svgz to avoid double-compression issues.

Безопасность и защита

РИСК: MEDIUM

Once decompressed, an .svgz is SVG XML, which can EMBED CSS and JavaScript - so a malicious .svgz opened in a browser can run scripts (a cross-site-scripting, redirect and phishing vector). The gzip wrapper can also briefly hide malicious markup from naive scanners. Treat unsolicited .svgz files like web pages, not pictures: don't open them from unknown senders, and websites should decompress and sanitize uploaded SVGZ (strip scripts/event handlers) before serving. Inspecting the decompressed XML in a code editor is safe. Avoid sketchy "free SVGZ opener/converter" sites that bundle adware - a browser, Inkscape and 7-Zip cover every real need.

Детали формата

в двух словах
ПОЛНОЕ НАЗВАНИЕCompressed Scalable Vector Graphicsтакже известен как Compressed SVG, gzipped SVG
РАЗРАБОТЧИКW3C (World Wide Web Consortium) - SVG standard; gzip wrapping is part of the SVG specс 2001 (defined alongside SVG 1.0; gzip compression of SVG is part of the W3C SVG spec)
MIME-ТИПimage/svg+xml-compressed
ТИПgzip-compressed SVG - XML vector graphics wrapped in a single gzip stream (binary container around text)
СТАНДАРТОткрытый · без роялти
СВЯЗАННЫЕ.emz.cdr.odg.vsdx
MAGIC BYTES · СИГНАТУРА ФАЙЛА
СМЕЩЕНИЕ
0001
HEX
1F8B
ASCII
··
An .svgz is a standard gzip stream (magic 1F 8B 08 at offset 0). Decompress it and you get ordinary SVG XML text ("<?xml ..." or "<svg ..."). Identical gzip signature to .gz files and .emz/.wmz - distinguish by the SVG XML inside. NOT to be confused with the uncompressed .svg (plain XML text, no signature).

Программы, открывающие файлы SVGZ

Windows4 apps
Adobe Illustrator Платно File -> Open the .svgz to edit; Save As offers SVG Compressed (.svgz) or plain SVG. The industry-standard vector editor.
7-Zip Открытый код Rename .svgz to .svg.gz, then right-click -> 7-Zip -> Extract to recover the plain .svg text.
Inkscape Открытый код The go-to free editor - opens .svgz directly (Compressed SVG is a native save format).
Web browser (Chrome, Edge, Firefox) Бесплатно Drag the .svgz into the browser window - it decompresses and renders the vector image at full quality.
macOS3 apps
Adobe Illustrator Платно File -> Open the .svgz to edit; Save As offers SVG Compressed (.svgz) or plain SVG. The industry-standard vector editor.
Inkscape Открытый код The go-to free editor - opens .svgz directly (Compressed SVG is a native save format).
Web browser / Safari Встроенная Open the .svgz in Safari/Chrome to view it instantly (decompressed on the fly).
Linux3 apps
Inkscape Открытый код The go-to free editor - opens .svgz directly (Compressed SVG is a native save format).
gunzip / gzip (command line) Открытый код Run 'gunzip -c file.svgz > file.svg' to decompress, or 'gzip -c file.svg > file.svgz' to compress.
Web browser (Firefox / Chrome) Бесплатно Open the .svgz in the browser to view it; it decompresses and renders automatically.

Технические подробности

глубокая спецификация
Containergzip (RFC 1952), single-member stream
Inner formatSVG XML (UTF-8 text), identical in content to a plain .svg file
Magic bytes1F 8B 08 at offset 0 - standard gzip header; same signature as .gz files
CompressionDEFLATE algorithm via gzip; typically reduces .svg file size by 50-80%
EncodingBinary outer container wrapping UTF-8 XML text
Byte orderLittle-endian (gzip header and trailer integer fields)
Integrity checkCRC-32 of the uncompressed SVG data plus a 4-byte ISIZE field in the gzip trailer
MIME typeimage/svg+xml served with Content-Encoding: gzip, or image/svg+xml-compressed
Web servingServer must not re-compress .svgz; send without Content-Encoding or with Content-Encoding: identity
File membersSingle gzip member only - not a multi-file archive like ZIP
Internal SVG versionDetermined by the version attribute inside the decompressed <svg> element
ScalabilityResolution-independent vector coordinate space; no pixel grid or fixed dimension limit
DecompressionAny gzip-compatible tool (gunzip, 7-Zip) yields the editable .svg XML
Typical file size1 KB - 1 MB compressed; commonly 20-50% of the source .svg file size
Выпущен2001 (defined alongside SVG 1.0; gzip compression of SVG is part of the W3C SVG spec)
Последняя версияTracks the SVG standard (SVG 1.1, 2011; SVG 2 in development)
Открыть стандартноеДа · без роялти
Спецификацияwww.w3.org

Конвертации SVGZ

Возможно
.SVGZ .PDFРУКОВОДСТВО
Да, SVGZ чисто конвертируется в PDF - откройте файл в бесплатном Inkscape и используйте «Файл» > «Сохранить…
Как конвертировать
.SVGZ .SVGРУКОВОДСТВО
Да - SVGZ - это просто сжатый gzipped SVG, поэтому конвертация представляет собой декомпрессию без потерь:…
Как конвертировать
.SVGZ .PNGРУКОВОДСТВО
Да, SVGZ конвертируется в PNG - самый быстрый метод - Inkscape (бесплатно), который открывает SVGZ напрямую и…
Как конвертировать
.SVGZ .DWGРУКОВОДСТВО
Вы можете конвертировать SVGZ в DWG, но это требует двух шагов - распакуйте в SVG, экспортируйте в DXF, затем…
Как конвертировать
.SVGZ .EMZРУКОВОДСТВО
Конвертация возможна, но требует двух шагов - откройте SVGZ в Inkscape или LibreOffice Draw, экспортируйте в…
Как конвертировать
.SVGZ .JPGРУКОВОДСТВО
Да - откройте SVGZ в бесплатном Inkscape, затем экспортируйте в JPG с нужным вам размером пикселей.
Как конвертировать
.SVGZ .WEBPРУКОВОДСТВО
Да - откройте SVGZ в Inkscape (бесплатно), установите целевой размер пикселей и экспортируйте напрямую в WebP.
Как конвертировать
.SVGZ .AIРУКОВОДСТВО
Да - Adobe Illustrator открывает SVGZ напрямую и сохраняет в своем родном формате .ai; это единственный…
Как конвертировать

Вопросы и ответы сообщества

спрошено пользователями
Задать быстрый вопрос
Получите помощь от людей, работающих с файлами SVGZ. Будьте конкретны - укажите вашу систему и версию ПО.
Аккаунт не нужен · ответы обычно в течение дня

Вопросов пока нет - станьте первым, кто спросит о файлах SVGZ.

Часто задаваемые вопросы

What is an SVGZ file and how is it different from SVG?
It's the same Scalable Vector Graphics image, just gzip-compressed to be 50-80% smaller. The content is identical XML; .svgz simply has a gzip wrapper around it.
How do I open an SVGZ file?
Open it in the free Inkscape or Adobe Illustrator, which read .svgz directly, or drag it into a web browser (Chrome, Edge, Firefox, Safari), which decompresses and displays it.
How do I convert SVGZ to SVG?
It's just gzip: rename the file to name.svg.gz and extract it with 7-Zip, run 'gunzip name.svgz' on Linux/macOS, or open it in Inkscape and Save As plain 'Inkscape SVG'. The result is lossless.
How do I convert SVGZ to PNG or JPG?
Open it in Inkscape or Illustrator and Export as PNG (keeps transparency) or JPG (flattened), choosing your pixel size. The vector won't rescale losslessly once rasterized, so pick the resolution you need.
Why won't my SVGZ open in a basic image viewer?
Many simple viewers don't understand the gzip wrapper. Use a web browser, Inkscape or Illustrator - they all handle .svgz - or decompress it to .svg first with 7-Zip/gunzip.
Is it safe to open an SVGZ file?
Mostly, but the decompressed SVG can contain JavaScript, so a malicious .svgz opened in a browser can run scripts (a known phishing/XSS trick). Don't open .svgz files from unknown senders, and sanitize user-uploaded ones on websites.

Ссылки

1W3C - SVG 2 specification (compressed SVG)www.w3.org
2RFC 1952 - GZIP file format specificationwww.rfc-editor.org

Узнать больше

по всей базе данных

Популярные расширения на этой неделе

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.PARTPartial Download File
4.BINCD/DVD Disc Image (BIN/CUE)
5.RPMSGRestricted Permission Message
6.MDMarkdown Document
7.NOMEDIAAndroid No-Media Marker File
8.PRO6XProPresenter 6 Bundle File
9.PRDXSoftMaker Presentations Document
10.EXEWindows Executable (Portable Executable)

Похожие расширения

.EMZWindows Compressed Enhanced Metafile
.CDRCorelDRAW image / drawing
.ODGOpenDocument Graphics (Drawing)
.VSDXMicrosoft Visio Drawing (2013+)
.AIAdobe Illustrator Artwork
.EPSEncapsulated PostScript

Бесплатные инструменты для файлов

Идентификатор файлов и конвертер изображений в браузере - все работает на вашем устройстве.

Открыть инструменты

Обзор расширений файлов A-Z