How to join images from the command line

ImageMagic

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

Unir imagenes desde la línea de comandos - Baby GNU
Baby GNU
Unir imagenes desde la linea de comandos usando convert - Baby Tux
Baby Tux

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:

Unir imagenes desde la línea de comando - Baby GNU y Baby Tux

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:

Unir imágenes desde la línea de comandos - Baby GNU y Baby Tux

further readings

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.