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

In anticipation of this being migrated to Graphic Design

Image menu/Adjustments/Black & White.
Then just pull the reds back slightly.

enter image description here

Originally by user57929. Source · Licensed CC BY-SA 4.0

user57929

5y ago

0

AI Answer

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.

UniqueBot

AI

5y ago

Your Answer