First time user, loving IM so far!
I am creating a batch script (Windows) that programatically adds the same watermark to many pictures. My script already works, however, since the pictures are different sizes, watermark is not consistently added at the same position. Also, I need the watermark to have the same ratio in relation to the picture's size, which is currently not happening with my script.
Here is what it currently looks like:
Code: Select all
@echo off
for /L %%i in (1,1,8) do ^
composite -dissolve 70% ^
-geometry -200-100 ^
-gravity southwest ^
Logo/Logo_Watermark.png ^
SourceFolder/IMG%%i.jpg OutputFolder/IMGwm%%i.jpg
--IM Version: 7.08-62