Hi,
you can try a few things, but you need to write a small script (python, etc.) or use imagemagick. I suggest to first try with gimp, find what works best, and then write the code. You want dark text on clear background.
For white text on red:
1. Invert the image. Desaturate. Increase contrast.
2. split the image in RGB channels and use the one that looks better (red probably). Also try to decompose in HSV and see if S or V looks good. From gimp do: Colors -> components -> decompose.
3. invert the image and try thresholding (OTSU, etc.)
With a little programming you can identify and isolate black regions from white ones, but I do not know if this is something you want to do.
Post the image if this does not help.
Lorenzo