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:
Combining two differnt size images into one of the same size
Re: Combining two differnt size images into one of the same
I would guess something like:
Code: Select all
Variable = identify -ping -format "%[fx:h]" image1
convert image1 ( image2 -resize xVariable ) +append image3