Search found 2 matches

by t1op
2012-06-25T06:46:43-07:00
Forum: Users
Topic: Batch processing flop and append
Replies: 2
Views: 4372

Re: Batch processing flop and append

Thanks for the direction. I found this does the trick:

FOR %a in (*.jpg) DO convert %a ( -clone 0 -flop ) +append mirrored_%a

Simple :)
by t1op
2012-06-23T18:06:29-07:00
Forum: Users
Topic: Batch processing flop and append
Replies: 2
Views: 4372

Batch processing flop and append

Is there a way to run this command convert image.jpg ( -clone 0 -flop ) +append result.jpg on all images in a directory? Is there a way to use wildcards? Or is a script required? I use Windows 7. I have never written a script before and from searching, I think it could take me days to try to figure ...