i got 2 issues when trying to watermark images.
here is the command i use (im unsing windows cmd):
Code: Select all
magick composite -tile watermark.png *.png watermarkresults_%d.png
when i do that, i only get 1 output image and its covered with a tile of one of the images in the folder, having the same resoltuion as the watermark image. so basically doing as said in my command, doesnt use the watermark.png, doesnt watermark all images, but it only does take one image and make it full tiled (-tile) with a part of one of the images, cropping out the same size as the water mark, and filling that one output files with it.
watermarking only worked with a singple image, for example:
Code: Select all
magick composite -tile watermark.png example_original.png water_exampleoriginal.png
any advices?