|
Posted by =?iso-8859-2?B?VG9tYXN6IE1hY2m on November 18, 2007, 2:26 pm
Please log in for more thread options
:
> I am using Smartphone 5.0 SDK and i want to draw text on image. How ca=
n =
> I do it?
If you are using C#, try this:
using (Graphics g =3D CreateGraphics())
{
g.DrawString("My string", new Font("Arial", 12f, FontStyle.Bold), new =
=
SolidBrush(Color.Green), 0, 0);
}
-- =
T.M.
|