SVG 최적화 도구
불필요한 데이터를 제거하고 코드를 최소화하여 SVG 파일을 최적화합니다. SVGO로 구동됩니다.
입력0 chars
출력
Optimized SVG appears here
Drop an SVG file or click to upload
SVG files only
Optimization Options
About SVG Optimization
- • Removes unnecessary metadata, comments, and editor data
- • Optimizes path data and numeric values
- • Merges similar paths and collapses groups
- • Minifies CSS and converts colors to shorter formats
SVG Optimization - 기술 세부 정보
SVG files from design tools often contain unnecessary metadata, comments, and editor-specific data. SVGO removes this bloat, optimizes path data, and minifies the code—typically reducing file size by 50% or more.
명령줄 대안
# Optimize with SVGO CLI\nnpx svgo input.svg -o output.svg\n\n# Optimize entire folder\nnpx svgo -f ./icons\n\n# With specific plugins\nnpx svgo input.svg --disable=removeViewBox