Raster vs vector: the 5-minute mental model

Half of all confusing image-format questions — “why is my logo blurry on the flyer?”, “why does the print shop keep asking for the vector file?”, “why is this SVG 1 KB and that PNG 4 MB?” — dissolve once you hold one distinction in your head: a raster image stores what the picture looks like; a vector image stores how to draw it.

Raster: a mosaic of pixels

PNG, JPG, WEBP, HEIC, BMP, GIF — all raster. The file is a grid of colored dots. Zoom in far enough and you see the dots; scale it larger than its grid and the software must invent dots that were never recorded, which is why enlargement always means blur. Raster is the natural format for photographs, because the world is not made of neat shapes.

Vector: a recipe of shapes

SVG, DXF, EPS, and fonts — all vector. The file says “circle at center, radius 40%, fill red”. When you scale a vector, the recipe is simply cooked at a bigger size; there is no grid to outgrow, so it is sharp at every size from favicon to billboard. This is also why the file can be absurdly small: a logo is a short recipe, no matter how large it prints.

The asymmetry everyone trips over

Vector → raster is trivial: any tool can “take a photo” of the recipe at any resolution. Raster → vector is the hard direction: something has to look at the pixels and reconstruct the recipe. That reconstruction is called tracing (or vectorization), and its quality depends on how recipe-like the image is. A flat-color logo traces almost perfectly — it was born as a recipe and is just returning home. A photograph traces into stylized, posterized art, because there was never a simple recipe behind it.

What the print shop actually wants

When a printer, embroiderer or sign maker asks for “the vector file”, they mean: a file that stays sharp at production size and that their machines can follow shape by shape. If the original vector is lost — a very common situation — retracing the logo from the best raster copy you have is the standard rescue, and for flat-color artwork the result is production-grade.

Cheat sheet

RasterVector
FormatsPNG, JPG, WEBP, HEICSVG, DXF, EPS
Made ofPixelsPaths & shapes
ScalingBlursAlways sharp
Best forPhotosLogos, cuts, print
Converting to the otherNeeds tracingTrivial (render)

Want to see the hard direction in action? Drop any image into the free vectorizer and watch the side-by-side preview — the mental model above will make everything you see predictable.