Page 1 of 1

Displaying multiple images

Posted: 2006-11-10T03:03:36-07:00
by Pranjal
Hi,

I have a folder containing 400 JPEG images. I need to display these one after another. Is there a way to do this in ImageMagick (using C++)??

Thanks
Pranjal

Posted: 2006-11-10T09:59:57-07:00
by magick
You can display a series of images with this command:
  • display -delay 100 *.jpg

Posted: 2006-11-11T01:08:38-07:00
by Pranjal
Thank you. One other question - What's the difference between:

animate -delay 100 *.jpg and
display -delay 100 *.jpg

Sincerely,
Pranjal

Posted: 2006-11-12T20:17:11-07:00
by anthony
animate is designed specifically to handle GIF and movie type animations, and the complecations involved. Display is designed to handle individual images.