Modify / Update a JPEG image programmatically to add a text

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
srivatsahg
Posts: 1
Joined: 2015-08-26T06:33:27-07:00
Authentication code: 1151

Modify / Update a JPEG image programmatically to add a text

Post by srivatsahg »

Hi
I was wondering if ImageMagick library would allow me to open a JPEG image on the fly and add a text field (for ex: Software version) Basically I should be able to send the software version to this library. And this image based library should modify/add a text to the image at a certain pixel position and be able to save the resulting image.

Thanks
Srivatsa
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Modify / Update a JPEG image programmatically to add a text

Post by fmw42 »

srivatsahg wrote:Hi
I was wondering if ImageMagick library would allow me to open a JPEG image on the fly and add a text field (for ex: Software version) Basically I should be able to send the software version to this library. And this image based library should modify/add a text to the image at a certain pixel position and be able to save the resulting image.

Thanks
Srivatsa

What do you mean by on the fly?

Imagemagick can open an image from disk, add text either in the image or below the image and save it to a disk again. There are many ways to add text to an image. See

http://www.imagemagick.org/Usage/text/
http://www.imagemagick.org/Usage/montage/#label
Post Reply