Tools
About Us
Contact Us
⌘K
Home
Tools
Design & Drawing
SVG
SVG Optimizer
Strip metadata, collapse groups, round numbers, and minify SVG via
svgo
.
Input
302 B
Output
180 B
Saved
40%
Source
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"> <!-- comment --> <g id="layer1"> <rect x="10" y="10" width="80" height="80" fill="#2B7BE4" stroke="#000000" stroke-width="0.0"/> <circle cx="50.000000" cy="50.000000" r="20" fill="white"/> </g> </svg>
Optimized
Copy
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="#2b7be4" d="M10 10h80v80H10z"/><circle cx="50" cy="50" r="20" fill="#fff"/></svg>
Before
After