Search found 4 matches

by cyberic68
2017-05-02T11:25:23-07:00
Forum: Users
Topic: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.
Replies: 7
Views: 9643

Re: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.

Hi

Good news after rebooting my PC, I don't have the error anymore. this is working like a charm

Thanks !!!
:)
Eric
by cyberic68
2017-05-02T09:16:47-07:00
Forum: Users
Topic: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.
Replies: 7
Views: 9643

Re: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.

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 ...
by cyberic68
2017-05-01T12:37:45-07:00
Forum: Users
Topic: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.
Replies: 7
Views: 9643

Re: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.

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 ...
by cyberic68
2017-05-01T05:40:59-07:00
Forum: Users
Topic: Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.
Replies: 7
Views: 9643

Convert all png files in a subfolder, and then append filename and Extension name in the png at the bottom.

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 ...