Search found 3 matches

by kedlm
2018-09-18T09:36:55-07:00
Forum: Users
Topic: [Solved, use shell to loop] Loop/Repeat/For in ImageMagick?
Replies: 5
Views: 4574

Re: Loop/Repeat/For in ImageMagick?

Good to know. I actually prefer it to start at 0 for the actual task.
by kedlm
2018-09-18T09:07:53-07:00
Forum: Users
Topic: [Solved, use shell to loop] Loop/Repeat/For in ImageMagick?
Replies: 5
Views: 4574

Re: Loop/Repeat/For in ImageMagick?

Thanks for the quick answers! @fmw42 that was very informative to learn a new way to handle temporary storage and sub shells @snibgo I hadn't seen the metadata escapes and I added the last +repage; thanks After some testing, just creating the long command in a for loop results in the simplest code, ...
by kedlm
2018-09-17T14:30:14-07:00
Forum: Users
Topic: [Solved, use shell to loop] Loop/Repeat/For in ImageMagick?
Replies: 5
Views: 4574

[Solved, use shell to loop] Loop/Repeat/For in ImageMagick?

Linux x64: ImageMagick 6.8.8-1 Q16 I need to read a raw image and split it into 16 pieces. I need to overlay pieces 1 and 2, 3 and 4, etc. and tweak and label each group. Then I need to convert everything into 1 final output image. I wrote a bash script to do it but it runs a bit slow. The single co...