I'm trying to automate overlaying images using imagemagick.
This is the command I constructed which goes into the Run DOS Command box:
convert "c:\AutoPrint_WA\IN\\%FileTriggerFileName%" -resize 1800x1205 -crop 1795x1205+0+0 "C:\AutoPrint_WA\OVERLAY\overlay.png" -compose over -composite "c:\AutoPrint_WA\MERGED\\"%FileTriggerFileName%"
Folders are hardcoded
A File monitor trigger was added.
But something does not work.
After dropping a jpg file in c:\AutoPrint_WA\IN\ I see the message job completed succesfully but I see no files addes in the c:\AutoPrint_WA\MERGED\ folder.
When typing this command (with real filename) in a regular command window it does work so the command line should be fine.
What am I doing wrong?
Christian


convert c:\AutoPrint_WA\IN\test.jpg -resize 1800x1205 -crop 1795x1205+0+0 C:\AutoPrint_WA\OVERLAY\overlay.png -compose over -composite c:\AutoPrint_WA\MERGED\final.jpg