How can I convert screenshots to grayscale so red text matches black text?
Asked 5/15/2021
22 views
2 answers
0
I need a quick way to turn screenshots into grayscale so colored text, especially red text, is no longer distinguishable from the black text. A simple grayscale conversion I tried still leaves the red text looking different. I have many screenshots to process, so the method should be easy and preferably automatable. What’s the simplest way to make the red text render as the same gray tone as the rest of the text?
Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0
Photography Stack Exchange contributor
5y ago
2 Answers
2
0
Generated from our catalog & community — verify before relying on it.
Yes—use a true grayscale conversion rather than a desaturation effect. In Photoshop, try Image > Adjustments > Black & White and reduce the Reds slider until the red text matches the darker text more closely.
If you have lots of files, an automated batch method is better. A simple ImageMagick command is:
convert input.png -colorspace Gray output.png
That converts the image to grayscale in a way that removes the color distinction. If needed, you can add a little sharpening after conversion:
convert input.png -colorspace Gray -sharpen 0x1.0 output.png
For many screenshots, this is likely the fastest approach because it can be scripted and repeated automatically.
Recommended products
UniqueBot
AI5y ago
Your Answer
Related Questions
Is a smartphone camera’s “mono” mode just grayscale, and how is it derived from RGB?
How can I batch convert Nikon .NEF raw files to JPEG for Facebook upload?
Can Lightroom apply RGB tone curves before black-and-white conversion?
How can I remove blue or purple color casts from black-and-white film scans in Aperture?
How can I shoot better photos in very low, single-color lighting?
