Black and White Signature Creator

Uploads a PNG signature and converts every pixel to pure black or pure white based on a brightness threshold, producing a crisp, high-contrast two-color signature instead of a many-shades-of-gray grayscale image. A free online tool from Staaarter, right in your browser.

Runs locallyUpdated 2026-07-26

Overview

Introduction

This tool converts a signature into crisp, true black-and-white artwork right in your browser, using a hard luminance threshold rather than a gradual grayscale conversion.

The result is a stark, high-contrast two-color image, useful whenever you need a signature to read as unambiguous ink-on-paper.

What Is Black and White Signature Creator?

A client-side threshold converter: every pixel's perceptual luminance is compared against a threshold value and mapped to either pure black or pure white.

It's the same underlying two-color threshold operation the general PNG-to-two-colors tool uses, with black and white pinned as the two output colors.

How Black and White Signature Creator Works

For each pixel, luminance is computed using the standard perceptual weighting (0.299 red + 0.587 green + 0.114 blue). Pixels at or above the threshold become pure white; pixels below it become pure black.

Alpha comes from the chosen output color rather than the source pixel, so the result is a genuinely flat two-tone image rather than a tinted grayscale.

When To Use Black and White Signature Creator

Use it when a form or printing process requires a stark, high-contrast signature rather than a photographic grayscale scan.

It's also a good step before converting a signature into a digital 'ink on transparent background' asset, since the hard threshold makes the ink/background boundary unambiguous.

Features

Advantages

  • Produces a genuinely two-color result, not just many shades of gray.
  • Simple, predictable threshold behavior that's easy to tune.
  • Runs entirely client-side.

Limitations

  • A poorly chosen threshold can lose faint ink strokes (mapped to white) or keep background noise (mapped to black).
  • It doesn't make the background transparent by itself — pair it with a transparency tool if you need that.

Examples

Default threshold

Input

A typical scanned signature on white paper, threshold 128

Output

Pure black ink on a pure white background

128 is the midpoint of the 0-255 luminance range and works well for most evenly lit scans.

Raising the threshold for faint ink

Input

A faint signature, threshold 180

Output

More of the faint gray ink is captured as black instead of being lost to white

A higher threshold classifies more medium-brightness pixels as 'dark', catching lighter ink strokes.

Best Practices & Notes

Best Practices

  • Start at the default threshold of 128 and adjust up or down based on how much ink or noise is being captured.
  • Run the low-quality signature improver first if the source scan is faint or low-contrast, so the threshold has more range to work with.

Developer Notes

This tool is a thin wrapper around the shared convertPngToTwoColors function, called with pure black and pure white pinned as the two output colors, reusing the exact same math the general two-colors converter uses.

Black and White Signature Creator Use Cases

  • Preparing a signature for high-contrast printing or faxing
  • Meeting a form's requirement for a stark black-and-white signature
  • Creating a clean base image before further digital-ink processing

Common Mistakes

  • Using the default threshold on a very faint scan and losing most of the ink to white.
  • Forgetting that the output background is solid, not transparent, when a transparent version is needed instead.

Tips

  • If the result looks too sparse, gradually raise the threshold rather than jumping straight to an extreme value.
  • Combine with the transparent PNG signature maker afterward if you need the white background gone too.

References

Frequently Asked Questions