I have the following problem. I want to make some graphics in bitmap image like bond form
i can write a text in image
but i will write more text in various positions
Bitmap a = new Bitmap(@"path\picture.bmp");
using(Graphics g = Graphics.FromImage(a))
{
g.DrawString(....); // requires font, brush etc
}
How can I write text and save it, and write another text in saved image.