how to insert text and bitmap on the Image using c#?

  • Thread starter Thread starter Senthil Kumar
  • Start date Start date
S

Senthil Kumar

Hi all,

I am opening an image from file or url. I want to insert text and bitmap
images on that Image at desired location.

Any suggestions please.
 
Bitmap bm = new Bitmap(myFile)

using (Graphics grfx = Graphics.FromImage(bm))
{
//draw on it as you wish
grfx.DrawString(myString,myFont, myBrush, myPoint);
}
 
Back
Top