vote up 0 vote down star

I need to add text to an image file. I need to read one image file (jpg,png,gif) and I need add one line text to it.

flag

48% accept rate
Looking into it. The problem is that when you open the file, it is locked so you can't save to the same file. Will get back to you... – Mladen Mihajlovic Apr 2 at 13:01

3 Answers

vote up -1 vote down check

Is this what you're looking for?

link|flag
This wouldn't help you save an image to disk though, only send it to a Web response. Is this what you wanted originally? – Mladen Mihajlovic Apr 2 at 12:59
It's just an example of how to draw a string on an image. – Aziz Apr 2 at 16:39
vote up 7 vote down

Well in GDI+ you would read in the file using a Image class and then use the Graphics class to add text to it. Something like:

  Image image = Image.FromFile(@"c:\somepic.gif"); //or .jpg, etc...
  Graphics graphics = Graphics.FromImage(image);
  graphics.DrawString("Hello", this.Font, Brushes.Black, 0, 0);

If you want to save the file over the old one, the code has to change a bit as the Image.FromFile() method locks the file until it's disposed. The following is what I came up with:

  FileStream fs = new FileStream(@"c:\somepic.gif", FileMode.Open, FileAccess.Read);
  Image image = Image.FromStream(fs);
  fs.Close();

  Bitmap b = new Bitmap(image);
  Graphics graphics = Graphics.FromImage(b);
  graphics.DrawString("Hello", this.Font, Brushes.Black, 0, 0);

  b.Save(@"c:\somepic.gif", image.RawFormat);

  image.Dispose();
  b.Dispose();

I would test this quite thoroughly though :)

link|flag
Just playing devil's advocate here: you'll obviously need to save it afterwards! – Paul Suart Apr 2 at 12:21
Hopefully the above will help. – Mladen Mihajlovic Apr 2 at 13:08
vote up 0 vote down

Hi,

You can do this by using the Graphics object in C#. You can get a Graphics object from the picture ( image.CreateGraphics() - or something like this as I remember ) and the use some of the built in methods for adding text to it like : Graphycs.DrawString() or other related methods.

link|flag

Your Answer

Get an OpenID
or

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