Grayscale Converter
Free grayscale converter: convert image to black and white online—luminosity, average, lightness methods, live preview, PNG download.
Or try an example
Help Us Improve
—
(—)
Use a threshold filter to make an image black and white. Set the cutoff, preview the two-tone result, and download PNG in your browser.
Threshold 0–255: Pick the luminance cutoff that separates white and black regions.
Luminance-based: Uses ITU-R BT.601 weights so the split matches how eyes read brightness.
Live preview: Input and output panels update as you move the slider.
Pure black and white: Output pixels are only #000000 or #FFFFFF on RGB channels for a true black white filter look.
PNG download: Save as threshold-image.png.
Client-side only: No account and no server upload.
Upload your photo
Drop or click in the input panel (15 MB max).
Adjust threshold
Start near 128, then sweep lower for more white or higher for more black.
Download PNG
Save when edges and silhouettes look correct for your layout.
Boost contrast first
If the preview looks muddy, try /change-image-contrast before thresholding.
Watch fine lines
Very thin strokes may disappear—lower threshold slightly to keep them white.
Start at 128
Middle gray cutoff is a sensible default for evenly lit photos.
Keep the color original
Threshold is destructive—save your source file before exporting.
Use PNG for logos
Transparency is preserved on uploads with alpha.
Avoid heavy JPEG noise
Compression artifacts can speckle the output—prefer PNG sources when possible.
ImageOnline.co
Image threshold/binarization tool with adjustable threshold level. Clean interface but JPEG-only output with watermark prompt.
PineTools.com
Threshold adjustment with upload-apply-download. No real-time slider preview.
OnlinePNGTools.com
PNG threshold tool. Only accepts PNG input—not suitable for JPG/WebP users.
Adobe Express
Threshold not available as standalone; must use full photo editor with manual adjustments.
Threshold Image
Adjustable threshold level slider (0-255). Converts image to pure black and white (1-bit). Real-time preview. Side-by-side comparison.
Silhouettes and stamps
Isolate subjects as high-contrast shapes for logos or rubber-stamp mockups.
Scan cleanup
Binarize faint pencil or ink lines before tracing or OCR prep.
Stencil art
Find a cutoff that keeps cut lines closed before laser or screen printing.
QR and barcode prep
Push noisy scans toward clean black modules on white backgrounds.
Poster and zine graphics
Get punk or photocopy aesthetics with a hard threshold look.
Potrace and vector handoff
Pair with /imagetracer after thresholding high-contrast line art.
Instant feedback
Scrub the slider instead of guessing a level in desktop curves.
True 1-bit look
Not gradual grayscale—only black or white pixels on RGB.
Private
Files never leave your browser.
Free
Unlimited previews and downloads.
Complements grayscale
Use /grayscale-image when you need smooth tonal steps instead.
No install
Works on desktop and mobile with Canvas 2D.
“Thresholding is the simplest method of image segmentation.”
Thresholding (image processing): This tool applies a global luminance threshold to convert photos to pure black and white. Pixels above the cutoff become white; pixels below become black, with no gray mid-tones. en.wikipedia.org/wiki/Thresholding_(image_processing)
“The Canvas API provides a means for drawing graphics via JavaScript and the HTML canvas element.”
Canvas API (pixel manipulation): Canvas 2D getImageData/putImageData computes per-pixel luminance using BT.601 weights and compares it to the threshold slider value for real-time binary output. developer.mozilla.org/en-US/docs/Web/API/Canvas_API
“PNG supports lossless data compression, making it useful for storing graphics that need to be edited repeatedly without losing quality.”
PNG image format: Downloading the threshold result as PNG preserves the sharp black-and-white edges without compression artifacts, ideal for silhouettes and stencil art. w3.org/TR/PNG/
“A binary image is one that consists of pixels that can have one of exactly two colors, usually black and white.”
Binary images in digital processing: Thresholding converts a grayscale image into a binary black-and-white image by setting a cutoff value — pixels above the threshold become white, below become black. en.wikipedia.org/wiki/Binary_image