⚡ DevTools
简体中文
繁體中文
English
日本語
Français
Español
العربية
Português
Русский
Deutsch
Tiếng Việt
한국어
☀️
前端/CSS 类 /
SVG 优化器
SVG 优化器
☆
压缩/清理 SVG 代码
加载中…
缩减了 61%
730B → 284B
输入 SVG
<?xml version="1.0" encoding="utf-8"?> <!-- Generated by Adobe Illustrator --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" xml:space="preserve"> <metadata> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> </rdf:RDF> </metadata> <title>My Icon</title> <desc>A simple circle icon</desc> <!-- Main circle --> <circle cx="50" cy="50" r="40" fill="#6366f1" stroke="#4f46e5" stroke-width="2"/> <g> </g> </svg>
优化后的 SVG
复制
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" xml:space="preserve"><circle cx="50" cy="50" r="40" fill="#6366f1" stroke="#4f46e5" stroke-width="2"/><g></g> </svg>
原始
My Icon
A simple circle icon
优化后