Morph and clone the layers

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
agriz
Posts: 237
Joined: 2011-10-01T02:21:30-07:00
Authentication code: 8675308

Morph and clone the layers

Post by agriz »

Code: Select all

convert \( img_1.png img_2,png -morph \) output 
This code gives me 7 images of img_1 and img_2

but

Code: Select all

convert \( img_1.png img_2,png -morph \) \( img_3,png \) output 
is giving 12 img_1, img_2 and img_3 in different variant.

Why?
i should get only img_1 and img_2 in seven variant and finally one img_3
But it is not working as expected

IM 7.0.2
agriz
Posts: 237
Joined: 2011-10-01T02:21:30-07:00
Authentication code: 8675308

Re: Morph and clone the layers

Post by agriz »

Sorry. It is working. I didnt check the right images. :)
Post Reply