All glossary terms
Technical & Files

What is Rasterization?

The process of converting vector graphics (paths, shapes) into a pixel grid. Required for printing on raster output devices (digital printers, screens).

In detail

Rasterization renders vector paths into pixels at a target resolution. Every vector graphic must be rasterized at some point in the pipeline because all final output devices (digital printers, monitors, fabric printers, projectors) work in pixels. The reverse of vectorization. Quality depends on resolution: a vector path rasterized at 300 DPI for textile printing produces sharp output; the same path at 72 DPI produces visible jaggies. Anti-aliasing during rasterization smooths the pixel-stair artifacts at curve edges. Modern tools rasterize on demand at the target DPI rather than storing pre-rasterized files; this preserves quality across multiple output sizes. Rasterization is destructive — once a vector becomes pixels, the editability is lost (you cannot scale it back up without quality loss). Always preserve the source vector master and rasterize only at production output time, at the exact target DPI. For textile work this typically means storing a clean SVG or AI source file and exporting TIFFs at the production DPI for handoff.

Example

A logo drawn as a 24-Bezier-curve SVG rasterizes at 72 DPI into a 144×144 pixel raster (5 KB). The same SVG at 300 DPI rasterizes to 600×600 (45 KB). At 600 DPI for rotary engraving: 1200×1200 (180 KB). All from the same source SVG; each rasterization happens at the moment of output.

Related terms

Vectorization
The process of converting a raster (pixel-based) image into a scalable vector (path-based) image. Used in textile design to prepare prints for screen printing, embroidery, and CAD systems.
DPI
Dots per inch — the resolution at which a digital design will be printed. Directly determines print quality and file size. Textile printing uses 72-600 DPI depending on print method.
SVG
Scalable Vector Graphics — XML-based vector format and the modern web standard. Used for textile CAD, browser-rendered logos, and embroidery handoff.
TIFF
Tagged Image File Format — the lossless raster format preferred for production textile printing. Supports embedded color profiles, alpha channels, multi-page documents, and 8/16/32-bit depth.

Go deeper

  • DPI for fabric printing