Hi This works perfectly when I run it by double clicking on the batch file, but it give me this error message when I try to run it from my task scheduler (Marco Scheduler) Here's the error message when it run via Marco Scheduler C:\WINDOWS\system32>"C:\Program Files\ImageMagick-7.0.5-Q16\"mogrify ...
Hi GeeMack, I have been successful with the two string that you have provided to me. I have added an extra % to be able to run it from a batch file mogrify -gravity south -splice 0x20 -pointsize 16 -annotate +0+33 "%%[t]%%[e]" -format jpg "*._*" My next challenge, it to make it run from a task ...
Hi I would like to convert all image in a subfolder with a windows batch file. Also then append the filename and the extension at the bottom of each image. I have been using this code that work but for only one file at the time FOR /F %%x IN ('convert %1 -ping -format "%%t" info:') DO SET name=%%x ...