Convert an Image to Grayscale
Load a picture and turn it black and white using true luminance weighting, then download the result — all on-device.
Grayscale Image Converter
🔒 Nothing you enter is sent anywhere or stored. All processing happens in your browser.
How it works
Grayscale strips the color from an image, leaving only shades of gray. A naive approach just averages the red, green, and blue channels, but human eyes are far more sensitive to green than to blue, so an average looks flat and wrong. This tool uses the luminance formula — 0.2126·R + 0.7152·G + 0.0722·B — the same weighting used in video and modern displays, for a natural, well-balanced black-and-white result.
Load any image and it is converted immediately, pixel by pixel, with getImageData and putImageData. The preview shows the finished grayscale version, and Download PNG saves it losslessly with any transparency preserved.
Everything is computed in your browser, so private photos and documents never leave your device. It is handy for print prep, e-ink displays, accessibility checks, or simply a classic monochrome look.