Paste logo on image

  • Thread starter Thread starter Sehboo
  • Start date Start date
S

Sehboo

Hi,

We have thousands of images and would like to watermark our logo on
those images.

Is it possible to put our logo on image programatically? manually it
will take years.

I don't even know where to begin.

Thanks

Adnan Masood
www.newbalanceindy.com
 
Hi,

We have thousands of images and would like to watermark our logo on
those images.

Is it possible to put our logo on image programatically? manually it
will take years.

I don't even know where to begin.

Thanks

Adnan Masood
www.newbalanceindy.com

Slightly off topic for this news group, but try googling for "batch watermarking" or "image batch proccessing watermark".

This link seems to list a few: http://graphicssoft.about.com/od/batchwatermarking/
 
Should be possible. You will need to read the image files individually using
the .fromfile method of the image class. You can then create a graphics
object and copy the bitmap into the graphics object. Onto that object, you
can place your watermark using .drawimage method of the Graphics class.

The Grahpics object can then be saved to a file by converting it into a
bitmap then into whatever format you want.

Shouldn' be too much of a problem but you will need to do some research into
the image, bitmap, and graphics class. If the images contain more than one
image, it will be more complex but can ge done.
 
If you want, send me one of your images and the watermark image and I'll see
if I can merge the two. You can send to my e-mail at:

(e-mail address removed)

Note: For those who always remind me not to give out my e-mail, thanks for
the warning but don't bother..I know the risks and have my computer fully
protected.
 
Back
Top