JA EN

Anti-aliasing

A rendering technique that smooths jagged edges (staircase artifacts) on diagonal lines and curves by blending intermediate colors at boundaries.

Anti-aliasing is a technique used to reduce the visual artifacts known as aliasing or "jaggies" that appear along diagonal lines and curves in raster images. Because pixel grids cannot perfectly represent non-axis-aligned edges, anti-aliasing places intermediate-colored pixels along boundaries to create the illusion of smoothness to the human eye.

In web development, CSS properties like -webkit-font-smoothing and the Canvas API's imageSmoothingEnabled control anti-aliasing behavior. Image editors allow toggling anti-aliasing on selection edges and brush strokes. Some artistic styles, such as pixel art, intentionally disable anti-aliasing to preserve crisp, blocky edges as a deliberate aesthetic choice.

Related Terms

Related Articles