PNG Grayscale Converter
Convert a PNG image to black and white (grayscale) right in your browser. Choose from three conversion methods for different tonal results, compare before and after side by side, and download the result as a PNG. Transparency is preserved. Nothing is uploaded to any server.
Upload PNG
Drop a PNG here or click to browse
PNG files only — processed locally, never uploaded
Before & After
Original
Grayscale
Grayscale Conversion Methods
Converting a color image to grayscale means replacing each pixel's red, green, and blue values with a single brightness value. There are several ways to compute that brightness:
Luminosity
The most perceptually accurate method. Human eyes are most sensitive to green light, less sensitive to red, and least sensitive to blue. The luminosity formula mirrors this:
Gray = 0.299 × R + 0.587 × G + 0.114 × B
This produces grayscale images that match how we naturally perceive brightness — a bright green field will look lighter than a bright blue sky, just as it does in real life.
Average
The simplest method: Gray = (R + G + B) ÷ 3. Equal weight to all channels. Tends to look a bit flat because it doesn't account for perceptual sensitivity. Useful when you want a mathematically neutral conversion.
Lightness
From the HSL color model: Gray = (max(R, G, B) + min(R, G, B)) ÷ 2. Emphasizes the brightest and darkest extremes of each pixel's color components. Can produce high-key or low-key results for some images.
Common Uses for Grayscale PNGs
- Printing line art or documents where color is not needed
- Reducing file size (grayscale channels use less data)
- Creating displacement maps, bump maps, or masks in image editing
- Icon and UI assets that need to look neutral
- Historical or vintage photo effects (pair with sepia toning in a graphics editor)
Related Tools
If you need to further process your PNG, try the PNG Resizer or PNG to JPG Converter. To remove the background before converting, see the PNG Background Remover.