clones/images add to single image by specifying x,y position
Posted: 2007-10-16T00:29:23-07:00
Code: Select all
convert -size 30x30 xc:black -fill white -draw "circle 15,15 5,15" ^
( +clone -shade 110x90 -normalize -negate +matte ) ^
( +clone -clone -2 -compose Plus -composite ) ^
( -clone 0 -shade 110x50 -normalize +matte ) ^
( +clone -gamma 1,0,0 ) ^
( -clone 2 +clone -compose Multiply -composite ) ^
-append seq_process_fx.gif
In the above example many images/clones (6) created in memory and appended all that to one image.
My question is : Is it possible to add those images/clones (6) each at the specific x,y position of resultant image while adding to each one. (I want all to be done in this single command line statement).