SVG Optimizer/Minifier
409 B → 207 B
49% smaller
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><title>Example icon</title><circle cx="60" cy="60" r="50" fill="#3b82f6"/><path fill="#fff" d="M40 40h40v40H40z"/></svg>
Paste SVG markup exported from an editor like Illustrator, Figma, or Inkscape and get back a cleaned-up, minified version — stripped of comments, editor metadata, redundant precision, and unnecessary attributes, using the same SVGO engine that powers most build-tool SVG optimizations, running entirely in your browser.
Frequently asked questions
Will optimizing change how my SVG looks?
SVGO is designed to preserve visual output while removing data that doesn't affect rendering — editor metadata, comments, excess decimal precision, and redundant grouping. In rare cases with unusual SVGs it's worth a quick visual check, which is why a preview is shown.
What does 'Multipass' do?
Some optimizations only become possible after an earlier pass simplifies the markup. Multipass reruns the optimizer until no further reduction happens, typically producing a smaller result at a small performance cost — negligible for most SVGs.