Anyone have good example of how to write text onto a jpg image and resave it using System.Drawing in .NET?
|
feedback
|
|
Yes you can do it fairly easily...
| |||
|
feedback
|
|
I came across these, hope these help http://www.codeproject.com/KB/web-image/TextOnImage.aspx http://www.switchonthecode.com/tutorials/csharp-snippet-tutorial-how-to-draw-text-on-an-image | |||
|
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 | |||
|
feedback
|