Зачем конвертировать AI в SVG?
SVG is the open web standard for vector graphics - browsers, Figma, and virtually every design tool read it natively. Converting from .ai lets you share artwork without requiring recipients to own Illustrator, and makes it usable in websites, icon systems, and CSS animations. See the .SVG format page for a full overview.
Способы конвертации AI в SVG
Adobe Illustrator BUILT-IN
Open the .ai file, then go to File > Save As and select SVG; this gives the highest fidelity because Illustrator has full access to its own editable data.
Inkscape OPEN-SOURCE
Open the .ai file in Inkscape, then use File > Save As and choose Plain SVG or Inkscape SVG.
Command line - Inkscape CLI
Convert with: inkscape input.ai --export-type=svg --export-filename=output.svg
Программы, которые конвертируют AI
Об этих форматах
Файл AI - это документ Adobe Illustrator Artwork, представляющий собой векторную графику, созданную в Adobe Illustrator. Большинство современных файлов AI совместимы с PDF, поэтому их можно…
Открыть детали .AI →Файл SVG - это масштабируемая векторная графика (Scalable Vector Graphics), открытый стандарт W3C, который хранит 2D-графику в виде текста XML, поэтому она масштабируется до любого размера…
Открыть детали .SVG →Качество и на что обратить внимание
- Gradient meshes are not supported in SVG and will be flattened to a raster image or approximated with many gradient stops.
- Illustrator-specific live effects (3D extrude, certain blend modes) are rasterized or dropped during export.
- Text can be exported as editable SVG
<text>elements or converted to outlines - use outlines for logos, live text for accessible content.
Часто задаваемые вопросы
Can I convert AI to SVG for free?
.ai files and export SVG at no cost.Why does Inkscape show my AI file differently than Illustrator?
.ai file, not the full Illustrator editable data, so effects and gradient meshes may look different or be missing.