API DrawText
-
Hi!
Wie kann ich bei Text
- Die Hintergrundfarbe ändern/transparent machen,
- Schritfgröße/farbe ändernich find weder ein manual noch sind die Deklarationen sehr hilfreich
-
MSDN schrieb:
The DrawText function uses the device context's selected font, text color, and background color to draw the text.
-
kann ich das irgendwie im Programm anpassen?
-
SelectObject <- Font
SetTextColor
SetBkColorSetBkMode(/*HDC*/, TRANSPARENT)
müsste auch gehen (ungetestet).
-
danke!