Convert GIF to SVG
A GIF has at most 256 indexed colours, so the palette work is half done before the trace starts. What is left is dithering, and dithering needs handling.
- 입력
- GIF
- 출력
- SVG
- 엔진
- WASM, 여러분의 탭에서
- 가격
- 무료 미리보기
이미지를 여기에 놓거나 붙여넣으세요
이미지는 업로드되지 않습니다. 이 탭에서 트레이싱됩니다.전체 변환기 열기
프리셋
- 01로고 — 이 페이지에 설정됨16색
- 02선화흑백
- 03사진64색
- 04자수8색 · 컷아웃형
- 05비닐4색 · 컷아웃형
- 06레이저흑백 · 폴리곤
- 출력 · SVG · PDF · EPS · DXF
- 미리보기 무료 · 다운로드는 Pro 월 €9.00
- 파일이 이 탭 안에 머뭅니다
vectortrace를 선택하는 이유
- 전표 1 / 3
브라우저 내 실행, 완전한 비공개
엔진은 여러분의 기기에서 워커로 실행되는 WebAssembly입니다. 이미지는 업로드되지 않으므로 유출될 것도, 삭제할 것도, 믿고 맡길 것도 없습니다.
- 전표 2 / 3
감싼 것이 아니라 편집 가능한 패스
엔진은 이미지를 색상 영역으로 그룹화하고, 그 경계를 추출해 곡선을 피팅합니다. 결과물은 실제 지오메트리입니다 — 영역마다 하나의 채우기, 여러분이 직접 옮길 수 있는 모든 노드 — 탭 안에서 만들어지며 서버에서는 결코 만들어지지 않습니다.
- 전표 3 / 3
인쇄와 생산 현장에서 쓰는 형식
아트워크용 SVG와 PDF, 커터·조각기·자수 소프트웨어용 EPS와 DXF. Illustrator, Inkscape, LibreCAD에서 바로 열리는 실제 파일 — JPEG를 감싼 SVG가 아닙니다.
형식 정보
| 형식 정보 | GIF · 입력 | SVG · 출력 |
|---|---|---|
| 종류 | Raster. Indexed colour, optionally animated. | Vector. Paths described in XML. |
| 확대/축소 | Pixelates past its native size, and the dithering becomes visible. | Sharp at any size. |
| 색상 | A palette of at most 256 colours. Transparency is one palette index. | One solid fill per path, in a palette you can edit by hand. |
| 편집 가능 프로그램 | Photoshop, GIMP, any browser. | Illustrator, Inkscape, Figma, Affinity Designer, a text editor. |
| 일반적 용도 | Older web graphics, simple animations, forum artwork. | Web, icons, print artwork, the input to a cutter workflow. |
알아두면 좋은 점
GIF stores an index per pixel into a palette of at most 256 entries. For a flat mark that is a gift: the colour regions are already discrete, and a small palette in the preset merges the near-duplicates that the encoder added.
Dithering is the catch. When a GIF was made from a photograph or a gradient, the encoder scattered two palette colours in a checkerboard to fake a third. A tracer sees that checkerboard as thousands of tiny regions. Raise the speckle filter and drop the colour count and the dither collapses back into flat areas.
Transparency in GIF is a single fully transparent palette index — there is no partial alpha — so edges of a transparent GIF are hard, not feathered. That traces cleanly, but it also means the original had visible stair-stepping that the trace will follow.
작동 방식
Drop the GIF
Drop or paste the .gif file. The first frame is decoded and traced.
Collapse the dithering
Lower the colour count until the checkerboard becomes flat areas, then raise the speckle filter to drop what is left.
Export the SVG
Expect hard edges: GIF transparency is one index, not an alpha channel, so the source had no feathering to recover.
벤치마크
마케팅이 아니라 측정입니다. 코퍼스, 방법론, 그리고 실행이 만들어낸 모든 수치를 빠짐없이 게시합니다.
방법론 → /benchmarks- boundary error, p95
- 0.09 px
- region-count error
- 0.000
- node-count ratio
- 1.00×
질문
- 01What happens to an animated GIF?
- The first frame is traced. An SVG that animates would need a path set per frame and a timeline, which is a different job; export the frame you want as a PNG and trace that if it is not the first.
- 02Why does my traced GIF have a checkerboard of tiny shapes?
- That is dithering being traced accurately. Lower the colour count so the two dithered colours merge, and raise the speckle filter so the leftover single-pixel regions are dropped.
- 03Is the GIF uploaded anywhere?
- No. The tracer is WebAssembly running in a Web Worker in this tab, so the pixels stay on your machine. There is no upload step, which is also why it keeps working with the network off.
관련
관련 변환