Overview
Introduction
This tool thins a signature's ink strokes entirely in your browser, shrinking overly heavy or bold strokes down to a finer weight.
It's the inverse operation of the signature thickener tool.
What Is Signature Thinner?
A client-side morphological erosion tool: it shrinks the signature's non-transparent silhouette inward by a chosen number of pixels.
The canvas dimensions stay the same as the source; only how much of it is covered by opaque ink decreases.
How Signature Thinner Works
For every originally-opaque pixel, the tool checks a neighborhood of the chosen radius around it. If any pixel in that neighborhood (or the pixel itself sitting at the canvas edge) is transparent, the original pixel is cleared to transparent too.
This shrinks the visible shape inward from every edge, the mirror image of how the thickener dilates it outward.
When To Use Signature Thinner
Use it on a signature that was signed with a thick marker or scanned at a setting that bulked up the strokes.
It's also useful for lightening a signature's visual weight to better match a document's overall typography.
Often used alongside Signature Thickener and Signature Color Changer.
Features
Advantages
- Keeps the same canvas dimensions as the source.
- Simple, predictable erosion by a fixed pixel radius.
- Runs entirely client-side.
Limitations
- Strokes thinner than twice the chosen erosion amount can be eroded away completely.
- It can't recover fine detail that was already lost to a heavy, blobby original stroke — it only removes pixels, never adds detail.
Examples
Best Practices & Notes
Best Practices
- Start with a small amount (1-2 pixels) and preview before applying a larger one.
- Check for any thin flourishes or fine details in the signature that might be at risk of disappearing.
Developer Notes
This tool is a thin wrapper around the shared removeStrokeFromPng function, which already implements exactly this alpha-silhouette erosion; no new math was needed since the operation is identical for a signature, sticker, or any other PNG shape.
Signature Thinner Use Cases
- Lightening an overly bold marker signature
- Reducing stroke weight to better match a document's typography
- Correcting a signature that scanned heavier than the original pen stroke
Common Mistakes
- Using a thinning amount large enough to erase fine details or thin flourishes entirely.
- Expecting the canvas to shrink — only the visible ink shrinks, the canvas stays the same size.
Tips
- Preview at 1 pixel first before trying larger erosion amounts.
- If a stroke disappears entirely, undo by re-uploading the original and using a smaller amount.