Reverse the morph by starting images

这一生的挚爱 提交于 2021-01-29 05:15:51

问题


I have created the morphing animation using image magick. i am using this reference page Imagemagick transitions between multiple images -- need idea

I have used this code to do the above

convert -delay 20 *.jpg -morph 14 g2b.gif

And now i am getting perfect animation for one way. means it is animated from start point to end point. but i want the reverse way also.

There are 2 images and i want to create a morphing animation from both side.

I have got one way animation from the two images.

convert -delay 20 *.jpg -morph 14 g2b.gif

I want the animation from both side. From the start point and the from the end to start point in the reverse order.

I got this image by using the above command.

I want to reverse animation also. Please help me in this.


回答1:


I would try:

convert -delay 20 whitecar redcar whitecar -morph 14 g2b.gif


来源:https://stackoverflow.com/questions/55701676/reverse-the-morph-by-starting-images

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!