Home / Definitions / Alpha Channel

Alpha Channel

Vangie Beal
Last Updated May 24, 2021 7:34 am

In graphics, a portion of each pixel’s data that is reserved for transparency information. 32-bit graphics systems contain four channels three 8-bit channels for red, green, and blue (RGB) and one 8-bit alpha channel. The alpha channel is really a mask. It specifies how the pixel’s colors should be merged with another pixel when the two are overlaid, one on top of the other.

Typically, you wouldn’t define the alpha channel on a pixel-by-pixel basis, but rather per object. Different parts of the object would have different levels of transparency depending on how much you wanted the background to show through. This allows you to create rectangular objects that appear as if they are irregular in shape you define the rectangular edges as transparent so that the background shows through. This is especially important for animation, where the background changes from one frame to the next.

Rendering overlapping objects that include an alpha value is called alpha blending.