Search found 4 matches

by slowhand1980
2011-02-26T07:54:08-07:00
Forum: Users
Topic: Convert images from two lists
Replies: 7
Views: 11806

Re: Convert images from two lists

Can you explain the "null:" function?
by slowhand1980
2011-02-25T16:13:35-07:00
Forum: Users
Topic: Convert images from two lists
Replies: 7
Views: 11806

Re: Convert images from two lists

thank yu so much, by the way I've solved with this script:

#!/bin/bash
for((i=0; i<10; i++)); do
touch file$i.log
convert x$i.jpg y$i.jpg -evaluate-sequence Mean xy$i.jpg
done


thanks to you now I can try also with this one

#!/bin/bash
for((i=0; i<10; i++)); do
touch file$i.log
convert x$i.jpg ...
by slowhand1980
2011-02-25T15:05:38-07:00
Forum: Users
Topic: Convert images from two lists
Replies: 7
Views: 11806

Re: Convert images from two lists

can someone help me to create a shell script like this one in Java?

Code: Select all

for (i=1; i<imagenumber; i++){
convert -average xi.jpg yi.jpg xyi.jpg
}
by slowhand1980
2011-02-25T09:36:59-07:00
Forum: Users
Topic: Convert images from two lists
Replies: 7
Views: 11806

Convert images from two lists

I'm new to imagemagick, I'm using ImageMagick 6.6.7-9 Q16 version.
Finally I was able two averaging a set of images with the command

convert -average image*.jpg output.jpg

Now I would to know if is it possiblo to convert, automatically, images from two different sets, somthing that can automate ...