Page 1 of 1

Combining two differnt size images into one of the same size

Posted: 2012-11-22T11:00:20-07:00
by cativo
What's the best and quickest way to take one image, stretch it vertically to match the vertical dimension of another image, then join them together into one image with no boarders?

For example:

Image

Re: Combining two differnt size images into one of the same

Posted: 2012-11-22T11:29:54-07:00
by Bonzo
I would guess something like:

Code: Select all

Variable = identify -ping -format "%[fx:h]" image1

convert image1 ( image2 -resize xVariable ) +append image3