tobitmap.com
Guide

Exporting 1-Bit Art as SVG

How the converter turns dithered pixels into a clean, infinitely scalable vector file — and when to choose it over PNG.

Why vector?

A PNG stores a fixed grid of pixels, so blowing it up makes the squares visible. An SVG stores shapes instead — tobitmap.com writes one rectangle per run of black cells — so the art stays perfectly crisp at any size, from a favicon to a wall print.

Each black run becomes a single <rect>. Zoom in as far as you like — the edges never soften.

How the export works

After dithering, the image is a matrix of black and white cells. The exporter scans each row and merges neighbouring black cells into one wide rectangle (run-length encoding), which keeps the file small and clean. Halftone mode instead writes one <circle> per dot.

Watch the shape count
Very small pixel sizes create thousands of rectangles. The converter shows a live svg shapes count — if it climbs past ~60,000, raise the pixel size for a lighter file.

PNG or SVG?

PNGSVG
ScalingFixed resolutionInfinite, no blur
Best forWeb, social, quick sharesPrint, cutting, editing
Editable shapesNoYes