Julien Lengrand-Lambert bio photo

Julien Lengrand-Lambert

French guy living in the Netherlands. IT Chapter Lead @ING during the day, CoFounder @Skyai at night.

Twitter LinkedIn Github

A simple way to watermark a batch of images

Hi all,

Some time ago, I was searching for a way to simply watermark images to put them on my gallery.

I knew digikam could do this, but the package in debian was an old version and the feature was not inserted yet. In addition, I have never found a photo management software that would fit my needs yet . . .

I finally developed my own function with some bash and image magickI created it to be as simple to use as possible. It needs:

  • an input folder
  • an output folder
  • a watermark image

When run, the script inserts the watermark in all images of the input folder and save them in the output folder.

$ waterMark in_folder out_folder watermark_image

As a bonus, the script automatically detects whether an image is in landscape or portrait mode before inserting the watermark, so that it is always in the right side.

Here is an example of the result :

Picture of the “jardin des plantes” in Nantes”

<img class=”size-medium wp-image-424” title=”Pourquoi le bitume?” src=”http://www.lengrand.fr/wp-content/uploads/2011/12/pourquoi_le_bitume__by_jlengrand-d4dp4ha-200x300.jpg” alt=”picture of the “jardin des plantes” in Nantes” width=”200” height=”300” />

This script is in an early stage for now, and should be upgraded with time. You can check out the TODO list here. 

You can download the script on my gitHub, or more simply download the project using git

$ git clone git://github.com/jlengrand/batchWaterMarking.git

Feel free to fork the project or let me know about what would be useful for you.

Hope this will help some of you !

See ya ;)