Frequently Asked Question:
How do I set the font color?
Question
I can draw text ontop of an image, that works well, but how do I set the colour of the text....I want it to be red !
Answer
The SetTextColor function can be used to set the color of subsequently drawn text.
// Set text color to red.
QP.SetTextColor(255, 0, 0);
QP.DrawText(50, 50, "Red colored text");