Black & White Threshold

Convert image to pure black & white.

Unlike grayscale, which preserves a full range of gray tones, thresholding pushes every pixel to one of just two values — pure black or pure white — based on a brightness cutoff. This tool applies that stark, high-contrast conversion to your image.

A technique rooted in early document scanning and image analysis

Thresholding has deep roots in early computer vision and document processing, where converting a scanned page to pure black-and-white (rather than full grayscale) dramatically simplified further processing — tasks like optical character recognition (reading text automatically) and print reproduction on early, resolution-limited output devices worked far more reliably and efficiently with a stark, unambiguous black-or-white image than with a full continuous grayscale range, which introduces considerably more computational and mechanical complexity to handle.

How threshold conversion works

The tool first converts the image to grayscale (measuring each pixel's brightness), then compares every pixel's brightness value against a chosen threshold cutoff — any pixel brighter than the threshold becomes pure white, and any pixel darker becomes pure black, with no intermediate gray values remaining at all; adjusting the threshold level shifts exactly where that light/dark dividing line falls, changing which details end up rendered as black versus white.

Where black-and-white thresholding is genuinely useful

  • Preparing scanned documents for OCR or archiving — a properly thresholded document scan is often more reliably processed by text-recognition software and compresses to a much smaller file size than an equivalent grayscale or color scan.
  • Creating stark, high-contrast graphic art effects — a deliberate creative choice for producing bold, graphic, poster-like or stencil-style visual effects from a photograph.
  • Preparing images for laser engraving, vinyl cutting or screen printing — several physical fabrication and printing processes specifically require pure black-and-white source artwork with no intermediate grayscale, making threshold conversion an essential preparation step.
  • Simplifying an image for line-art tracing or coloring book creation — thresholding a photo can produce a useful starting point for further tracing into clean line art.

Frequently asked questions

How is thresholding different from a regular grayscale conversion? Grayscale preserves a full continuous range of gray tones between black and white, retaining subtle tonal detail, while thresholding forces every single pixel to become either pure black or pure white with no in-between values at all — a much starker, more aggressive simplification of the original image.

What happens if I choose the wrong threshold level? A threshold set too low (dark) can lose important detail into solid black, while one set too high (bright) can wash important detail out into solid white — finding the right threshold level for a specific image often requires some experimentation to preserve the details that matter most for your particular use case.

Can thresholding be applied unevenly across different parts of an image? More advanced "adaptive thresholding" techniques, used in some specialized image processing software, calculate a different local threshold for different regions of an image rather than applying one single global cutoff — genuinely useful for images with uneven lighting, though this tool applies a single, consistent global threshold across the entire image.

Further reading