1. Create a new System.Drawing.Bitmap class and load it with the image
2. Get a graphics object from the Bitmap using Graphics.FromImage(bitmap)
3. Use DrawStrign to draw on the graphics object eg on the bitmap.
4. Save the file as another filename (you cannot overwrite, otherwise make a
copy before changing or load into stream first)
5. Dispose the graphics object
James

Signature
Create interactive diagrams and flowcharts with ERM Diagram at
http://www.crainiate.net
Take the ERM Tour at http://www.flowchartcontrol.com
> Hi,
> My ASP.net applicatian uploads images up to my webserver, and in the
[quoted text clipped - 12 lines]
> Please suggest!!!
> Sameer
sameer - 28 Jul 2005 17:45 GMT
is there any website where i might be able to find some code which describes
this? Not really a .net guy
> 1. Create a new System.Drawing.Bitmap class and load it with the image
> 2. Get a graphics object from the Bitmap using Graphics.FromImage(bitmap)
[quoted text clipped - 21 lines]
> > Please suggest!!!
> > Sameer
Morten Wennevik - 28 Jul 2005 23:13 GMT
Hi Sameer,
The process is the same for drawing on a picture as drawing on a windows Form or any Control. Just google for samples on how to use Graphics.DrawString. In any case, you might find this page useful.
http://www.codeproject.com/aspnet/TextOnImage.asp
> is there any website where i might be able to find some code which describes
> this? Not really a .net guy
[quoted text clipped - 30 lines]
>> > Please suggest!!!
>> > Sameer

Signature
Happy coding!
Morten Wennevik [C# MVP]