Anyone have good example of how to write text onto a jpg image and resave it using System.Drawing in .NET?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Yes you can do it fairly easily...

Bitmap bmp = new Bitmap("C:\\test.jpg");
Graphics gra = Graphics.FromImage(bmp);
string text = "Hello\nWorld";

gra.DrawString(text, new Font("Verdana", 24), Brushes.Black, new PointF(0, 0));
bmp.Save("C:\\test_out.jpg");
link|improve this answer
feedback

Acquire graphics from image calling CreateGraphics(), use its Graphics.DrawString method and save it as required.

More info: http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawstring.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.