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);
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top