En utilisant la ligne de commande convert
, nous pouvons concaténer img1.png
avec img2.png
:
convert img1.png img2.png +append full_img.png
Cependant, la commande ci-dessus ajoute img2.png
au droit de img1.png
. Comment ajouter img2.png
à en bas sur img1.png
à l'aide de la commande convert
?
Juste:
convert img1.png img2.png -append full_img.png
Voir la page de manuel:
-append append an image sequence top to bottom (use +append for left to right)