Code: Select all
convert bg.tif fg.tif -gravity center -composite new.tif
Info: ImageMagick 6.7.7-10 2013-09-10 Q16 run in terminal of Ubuntu Gnome 13.04 i386
Code: Select all
convert bg.tif fg.tif -gravity center -composite new.tif
Code: Select all
convert bg.tif fg.tif -gravity north -geometry +0+Y -composite new.tif
Code: Select all
composite -gravity center -gravity north -geometry +0+264 130b.tif blnk_300.tif new.tit
That is because the -gravity center was likely replace by the subsequent -gravity north. The rest of the command was just as I suggested for use with -gravity northI just tried to use multiple ‘-gravity’ settings and it just worked!