Page 1 of 1

Posted: 2006-12-11T21:17:24-07:00
by anthony
Neight GIF or AVI will optimize a shifting point of view as you describe.

As for generating. crop each frome from the original image then join them together.

Code: Select all

   convert original.jpg \
                 \( -clone -crop 512x512+0+0 +repage \) \
                 \( -clone -crop 512x512+0+1 +repage \) \
                 \( -clone -crop 512x512+0+2 +repage \) \
                 \( -clone -crop 512x512+0+3 +repage \) \
                 \( -clone -crop 512x512+0+4 +repage \) \
                 \( -clone -crop 512x512+0+5 +repage \) \
                 ...
                 -delete 0   animation.gif
that should do it.