On Mon, 2 Feb 2009 15:44:18 -0800 [email protected] wrote:
| >Can anybody post a sample script (dos command line) for fading two images in | >one over a sequence of 5 images (imageA(8) + imageB(0) + imageC1; imageA(80) | >+ imageB(20) + imageC2; imageA(60) + imageB(40) + imageC3; imageA(20) + | >imageB(80) + imageC4; imageA(0) + imageB(100) + imageC5)? | > | > | > | >Anybody has a glorious idea? | | see composite -blend | | change the blend factor by 0, 25, 50, 75, 100%, then create a | multi-frame gif for animation | | see | | http://www.imagemagick.org/Usage/compose/#blend | http://www.imagemagick.org/Usage/anim_basics/ | Also look at the example for -morph which does exactly that. http://www.imagemagick.org/Usage/anim_mods/#morph Note this is a unix shell script, but that can be made a DOS version by knowing a few simple changes.. See... http://www.imagemagick.org/Usage/api/#windows Note that this is only a color blend change. there are other methods which I do plan to example, * Wipes between two images, such as provided by Fred Wienhaus's example script 'transitions' http://www.fmwconcepts.com/imagemagick/transitions/index.php * blended and distorted transitions, as in Fred's 'fxtransitions' http://www.fmwconcepts.com/imagemagick/fxtransitions/index.php * Both color and positional warping of objects between the to image (this is 'true' morphing). One 'single point' morphing example is Fred's 'shapemorph' script http://www.fmwconcepts.com/imagemagick/shapemorph/index.php Of course a better method would be a multiple point or area distortion with blending to produce a completely seamless morph between two images. Please let us know what you come up with! Anthony Thyssen ( System Programmer ) <[email protected]> ----------------------------------------------------------------------------- There are no bugs, only unrecognized features. ----------------------------------------------------------------------------- Anthony's Home is his Castle http://www.cit.gu.edu.au/~anthony/ _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
