No, I dont want to use:
e.Graphics.DrawString("not a rectangle");
e.Graphics.FillRectangle(Brushes.White, 0,0, 50,10);
I want to have 1 pixel border to the text I draw.
But if I first draw the white text (the border), and then the black text (the enterior), the problem is that "drawString()" does not give the size in pixels, but in points.
If I can specify the font-size in pixels, you can do:
1. "not a rectangle", font-size = 22px, x = 10, y = 10
2. "not a rectangle", font-size = 20px, y = 11, y = 11
Is there a way to have the size in pixels?