concatenate two images one below the other

8,275

Just:

convert img1.png img2.png -append  full_img.png

See the manpage:

    -append         append an image sequence top to bottom (use +append for left to right)
Share:
8,275

Related videos on Youtube

Abdennour TOUMI
Author by

Abdennour TOUMI

Instructor of Course Run Kubernetes on AWS with EKS. Certified: ๐Ÿฅ‡ CKA - Kuberntes administrator k8s ๐Ÿฅ‡ CKAD - Kuberntes App Dev k8s ๐Ÿฅ‡ AWS DevOps Engineer - Professional devops aws ๐Ÿฅ‡ Professional Cloud Architect - Google Cloud google-cloud-platform ๐Ÿฅ‡ AWS Solutions Architect - Professional architecture aws ๐Ÿฅ‡ Red HAT Certified in Ansible Automation ansible devops ๐Ÿฅ‡ Red HAT Certified in Openshift Administration ocp ๐Ÿฅ‡ Red HAT Certified in Openshift App Development ocp ๐Ÿฅ‡ Red HAT Certified Engineer redhat ๐Ÿ… AWS Solutions Architect - Associate architecture ๐Ÿ… AWS SysOps Administrator - Associate aws ๐Ÿ… AWS Developer - Associate aws ๐Ÿ… Linux Professional Institute (LPIC-1) linux ๐Ÿ… Professional ReactJS Developer (Udacity Nanadegreee) react frontend ๐Ÿ… Fullstack web Developer (Udacity Nanadegreee) python flaskrest Top 1 Stackoverflow reputation in my country Tunisia since 2017 Read more about me: in.abdennoor.com

Updated on September 18, 2022

Comments

  • Abdennour TOUMI
    Abdennour TOUMI over 1 year

    Using the convert command, we can concatenate img1.png with img2.png:

    convert img1.png img2.png +append  full_img.png
    

    However, the command above adds img2.png to the right of img1.png. How to add img2.png at bottom of img1.png using the convert command?

  • Smeterlink
    Smeterlink over 2 years
    Preserve the quality: convert -quality 100 img1.png img2.png -append full_img.png