惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
IT之家
IT之家
博客园 - 叶小钗
雷峰网
雷峰网
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Browser-Only Image Vectorizer with WebAssembly
Scofield Eri · 2026-05-12 · via DEV Community

Most online image vectorizers have the same uncomfortable tradeoff: upload your file, wait for a server to process it, then hope the SVG export is not locked behind a paywall or covered with a watermark.

That feels especially wrong for the common cases I care about:

  • A designer has a client's logo as a low-resolution PNG.
  • A developer needs a quick SVG icon from a raster asset.
  • A maker wants a clean SVG for Cricut, laser cutting, or print-on-demand.
  • Someone has a signature, sketch, or line drawing that should never touch a random server.

So I built Vectorize Image: a free image-to-SVG converter that runs entirely in the browser.

No upload. No account. No watermark. The input image stays on your device.

What it does

The tool takes a PNG, JPG, or WebP file and turns it into a downloadable SVG.

The first version is intentionally narrow:

  • Upload PNG, JPG, or WebP up to 10 MB.
  • Choose one of three presets: Logo, Sketch, or Photo.
  • Preview the original and vector result side by side.
  • Download the SVG.
  • Keep the entire conversion local in the browser.

It is not trying to be a full Illustrator replacement. It does not edit individual nodes. It does not export DXF, PDF, or EPS yet. It does one job: raster image in, SVG out.

That constraint made the architecture much simpler.

The core idea: send the algorithm to the file

The normal approach for image conversion tools is:

browser -> upload image -> server processes image -> browser downloads result

Enter fullscreen mode Exit fullscreen mode

I wanted the opposite:

browser downloads app once -> image is processed locally -> SVG is generated locally

Enter fullscreen mode Exit fullscreen mode

That meant the vectorization engine had to run in the browser.

For tracing, I used the open-source vtracer algorithm. It is written in Rust and works well for the kinds of inputs this tool is designed for: logos, icons, sketches, line art, signatures, and flat illustrations.

The browser pipeline looks like this:

Browser-based image vectorizer converting a raster landscape into an SVG with WebAssembly

File input
  -> createImageBitmap()
  -> canvas / ImageData
  -> Web Worker
  -> vtracer compiled to WebAssembly
  -> SVG string
  -> preview + download

Enter fullscreen mode Exit fullscreen mode

The important part is that the image bytes never need to leave the page.

Why WebAssembly

I looked at pure JavaScript tracing libraries, but quality and performance are difficult once you care about multi-color output. I also did not want the first version to require a backend queue, object storage, cleanup jobs, or file retention rules.

WebAssembly was a good fit:

  • The tracing engine already exists in Rust.
  • The compiled wasm package can be lazy-loaded only when the user uploads a file.
  • The whole site can still be deployed as static files.
  • Privacy is stronger because there is no upload endpoint.
  • Hosting cost stays close to zero.

The app is a static Next.js site deployed on Cloudflare Pages. The wasm module is just another asset.

Why a Web Worker

Vector tracing can be expensive. A small flat logo may finish quickly, but a detailed photo can take much longer and produce a very large SVG.

Running that work on the main thread would make the UI feel broken. So the tracing happens inside a Web Worker.

The simplified worker shape looks like this:

import init, { convert } from "wasm-vtracer";
import { PRESET_PARAMS } from "../lib/vectorize.types";

let ready: Promise<unknown> | null = null;

function ensureReady() {
  if (!ready) ready = init();
  return ready;
}

self.addEventListener("message", async (event) => {
  const { imageData, preset } = event.data;
  const started = performance.now();

  try {
    await ensureReady();

    const rgba = new Uint8Array(
      imageData.data.buffer,
      imageData.data.byteOffset,
      imageData.data.byteLength
    );

    const svg = convert(
      rgba,
      imageData.width,
      imageData.height,
      PRESET_PARAMS[preset]
    );

    self.postMessage({
      ok: true,
      svg,
      ms: Math.round(performance.now() - started),
      bytes: new Blob([svg]).size,
    });
  } catch (error) {
    self.postMessage({
      ok: false,
      error: error instanceof Error ? error.message : String(error),
    });
  }
});

Enter fullscreen mode Exit fullscreen mode

There is only one request and one response, so I kept the first implementation on native postMessage. If I add progress events or a richer API later, I may wrap it with Comlink.

Presets matter more than sliders

vtracer exposes a lot of useful parameters: color precision, speckle filtering, path precision, hierarchy mode, corner threshold, and more.

That is great for tuning, but it is not a great first-run user experience. Most users do not open a converter because they want to learn tracing parameters. They open it because they want an SVG.

So the MVP starts with three presets:

  • Logo: flat-color marks, icons, brand assets.
  • Sketch: signatures, hand drawings, line art.
  • Photo: detailed or shaded images, with realistic expectations.

The biggest lesson from testing: the best user experience is not always exposing every control. It is picking good defaults and being honest about the boundaries.

The hard boundary: photos are not magic

Vector tracing is not the same as AI image reconstruction.

For logos, icons, signatures, and clean line art, the output can be very useful. The SVG is usually small, sharp, and easy to import into Figma, Illustrator, Inkscape, or a cutting workflow.

For detailed photographs, the result is different. A photo contains thousands of small color transitions, textures, shadows, and noise. A vector tracer has to approximate those pixels with shapes. That can produce:

  • huge SVG files,
  • too many paths,
  • slow rendering,
  • stylized output rather than a faithful photo.

So the UI warns users when an image looks too complex or the output is too heavy. The goal is not to pretend every photo becomes a perfect vector. The goal is to help people use the tool where vector tracing actually works.

That is why the homepage and tool copy emphasize logos, sketches, line art, signatures, and flat illustrations first.

The privacy benefit is also a product feature

"Your image never leaves your browser" is not just a privacy line. It changes what the product can be.

It means:

  • no temporary image storage,
  • no cleanup cron,
  • no file retention policy to enforce,
  • no backend scaling problem for free users,
  • no need to handle uploaded customer logos on a server.

For a small utility product, that is a major operational win.

It also makes the product easier to explain. The browser downloads the code. Your image stays local. The SVG is generated locally. That is the whole model.

Current stack

The current version uses:

  • Next.js with static export
  • TypeScript
  • Tailwind CSS
  • Rust compiled to WebAssembly
  • vtracer for raster-to-vector tracing
  • Web Worker for off-main-thread processing
  • Cloudflare Pages for hosting

Because there is no application server, the site is cheap to run and easy to cache. The heavy work happens on the user's device only after they choose a file.

What I would add next

The next improvements are not bigger infrastructure. They are small product upgrades:

  • an advanced panel for color precision, speckle filtering, and path precision,
  • better warnings for complex photos,
  • more use-case pages for Cricut, signatures, sketches, and AI-generated icons,
  • more before/after examples,
  • possibly HEIC input if enough mobile users need it.

I am intentionally not rushing into accounts, payments, batch processing, or an API until the basic tool has enough real usage data.

Try it

You can try the tool here:

https://vectorize-image.app

It works best on logos, icons, signatures, sketches, line art, and flat illustrations.

If you test it with an image type that breaks badly, I would like to know. The most useful feedback right now is not "nice app", but "this kind of input produces ugly SVGs."