Come unire le immagini dalla riga di comando

Rispondi
cmo
Reactions score: 0
mag 2020 06 12:25

Come unire le immagini dalla riga di comando

Messaggio da cmo

To join images from the command line we can use the convert command, convert is included in Image Magick, a suite for bitmap images manipulation
Start from these images
Immagine

To put it next to each other let’s run
$ convert +append baby_gnu.png baby_tux.png baby_gnu_baby_tux.png

Looks like:
Immagine

To put it on top of each other let’s run
$ convert -append baby_gnu.png baby_tux.png baby_gnu_baby_tux.png

Looks like:
Immagine
further readings

Rispondi