I'm almost new to ImageMagick, trying to use it to blend 3 pictures in a specific way. Let's call them pictures 1, 2 and 3.
The 3 pictures have the exact same resolution.
I'd like to combine them into a single picture alternating 10 (or 5, or 25, whatever) pixels blocks of each one.
The result would be a picture with the same resolution as my input pictures, and would be something like :
Code: Select all
[1][2][3][1][2][3]
[2][3][1][2][3][1]
[3][1][2][3][1][2]
[1][2][3][1][2][3]
[2][3][1][2][3][1]
[3][1][2][3][1][2]
Thanks for any recommendation you have!
~Ornux