تحسين وضغط رسومات المتجهات SVG وتنظيف الكود
تحسين وضغط رسومات المتجهات SVG وتنظيف الكود
تعمل هذه الأداة محلياً بالكامل داخل المتصفح (Client-Side). لا يتم رفع صورك أو مقاطع الفيديو أو الملفات الصوتية أو مستندات PDF إلى أي خادم خارجي؛ تتم المعالجة بأمان تام داخل ذاكرة جهازك.
البنية الأساسية والصيغة الرياضية
Optimized SVG = Remove(Metadata) ➔ Minify(Whitespace) ➔ Round(Path Coordinates)
The single biggest byte saving in SVG optimization is rounding floating point coordinates. A coordinate like `M 10.4857239 20.1239578` can be rounded to `M 10.5 20.1` without visibly changing the shape on screen.
أفضل الممارسات والإرشادات الأساسية
- Remove Invisible Elements: Designers often hide layers (e.g., `display: none`) rather than deleting them before exporting. The SVG optimizer strips these hidden layers, instantly reducing file bloat.
- Minify Path Data: A complex vector icon can have hundreds of path nodes. Stripping unnecessary spaces and commas from the `d=` attribute drastically reduces the final HTML DOM size.
- Use SVG Sprites for Icons: If you use the same SVG icon multiple times on a page, do not inline it 10 times. Optimize it once, place it in an SVG `<symbol>`, and reference it via `<use>` to save massive bandwidth.