Export SVG

SVG (Scalable Vector Graphics) is the ideal format for icons, logos, and graphics that need to scale perfectly at any size. Azyrom exports clean, optimized SVG code.

Why SVG?

Exporting SVG

  1. Select the elements to export
  2. Press ⌘/Ctrl + Shift + E or File → Export
  3. Choose SVG as the format
  4. Configure SVG options
  5. Click Export

SVG Options

Include ID Attributes

Add ID attributes based on layer names:

Outline Text

Convert text to paths:

Tip

Outline text for logos and icons where exact appearance matters. Keep text editable for content that might need updates or accessibility.

Flatten Transforms

Apply all transformations to path coordinates:

Simplify Paths

Reduce the number of points in paths:

SVG Structure Options

Presentation Attributes vs. CSS

Presentation Attributes CSS Styles
<path fill="#ff0000"> <path style="fill:#ff0000">
Better compatibility Easier to override with CSS
More verbose Can be centralized

Responsive SVG

For responsive SVGs that scale with their container:

Optimizing SVG

For the smallest, cleanest SVG files:

  1. Simplify paths - Remove unnecessary points
  2. Flatten groups - Reduce nesting
  3. Use basic shapes - rect/circle instead of paths when possible
  4. Remove hidden elements - Delete anything not visible
  5. Outline strokes - Convert to fills if stroke features aren't needed
Pro Tip

For production use, run your exported SVGs through an optimizer like SVGO to further reduce file size. Many build tools include SVG optimization plugins.

Copy as SVG Code

Get SVG code directly without saving a file:

  1. Select elements
  2. Edit → Copy as SVG (or right-click → Copy as SVG)
  3. Paste the SVG code directly into HTML or code editors

This is great for quickly adding icons to web projects.

What Exports Well to SVG

What Doesn't Export to SVG

Use Cases

Icons

Export individual icons as SVG for web use. Consider creating an icon sprite for multiple icons.

Logos

SVG logos scale perfectly from favicon to billboard size.

Illustrations

Vector illustrations maintain quality at any display size.

Animations

Export SVG then add CSS or SMIL animations in code.