Tested tool guide
Tested browser tools
Checked August 16, 2026
What Image Channels Splitter does, with a checked example
Image Channels Splitter takes one raster image and presents four coordinate-matched views: its red, green, blue, and alpha components. Use it to determine which component carries detail, a color cast, or transparency instead of judging only the composite picture. The common surprise is the alpha result: it describes opacity, not a fourth color. An image without transparency can therefore produce a uniform maximum-value alpha view while its RGB views still contain all visible structure.
Worked example
A concrete input and expected output from the current implementation.
Input
A 2 x 1, 8-bit RGBA PNG with left pixel (255, 0, 0, 255) and right pixel (0, 128, 255, 64).
->
Expected output
Four 2 x 1 views with these component samples from left to right: red [255, 0], green [0, 128], blue [0, 255], and alpha [255, 64].
Each view selects the corresponding component from both RGBA pixels. The left pixel has full red and opacity, while the right has green 128, full blue, and alpha 64.