Logo Watermarking with batch script in ImageMagick Fast and Easy to use
YOUR LINK HERE:
http://youtube.com/watch?v=VCGvZH9SsfM
Hello Everyone, • In this video tutorial, you will learn to do logo watermarking on images with a batch script with the help of ImageMagick command-line tools. • It's very easy and fast to put the watermark logo on images with a single command. Please watch the complete tutorial for a better and clear understanding of the whole concept. • For your reference I am giving commands here in the description, Do some hands-on with ImageMagick. • #Watermark position param: • bottom right corner: SouthEast • bottom left corner: SouthWest • Watermarking on a single image • -------------------------------------------- • magick composite -gravity SouthEast logo.png Sample4.jpg Ouput4.jpg • magick composite -gravity SouthWest logo.png Sample5.jpg Ouput5.jpg • Batch Watermarking with image: • ----------------------------------------------- • we have to write a .bat file with the following script code: • @echo off • for %%z in (*.jpg ) do ( • magick %%z logo.jpg -gravity southeast -geometry +10+10 -composite output/ %%z • ) • note: • %%z = this will read all file name which has .jpg file extension • -geometry +10+10 = absolute poisition param • • #LogoWaermarkingwthBatch #ImageMagickBatchWatermarking • • ImageMagick Installation tutorial link:
#############################
