- Download and install ImageMagick Mac OS X Binary Release at ImageMagick official site.
$ tar xvfz ImageMagick-x86_64-apple-darwin12.4.0.tar.gz $ export MAGICK_HOME="/YOUR/PATH/TO/ImageMagick-6.8.6" $ export PATH="$MAGICK_HOME/bin:$PATH" $ export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"
See this for installation on Linux. - Enter the directory where original images are stored (assuming all files are in .jpg format), use the following command:
$ convert -delay 100 -loop 0 -resize 300x225 -quality 90 *.jpg image.gif
-deplay represents interval between slides, -loop indicates number of loops for slide show (0 for infinite loops); other options are intuitive. Note that *.jpg will expand to images ordered alphabetically by filename. Use the following command to re-order the images by last modified time:$ convert -delay 100 -loop 0 -resize 300x225 -quality 90 `ls -t`
ppt.cc/fVjECx ppt.cc/fEnHsx ppt.cc/fRZTnx ppt.cc/fSZ3cx ppt.cc/fLOuCx ppt.cc/fE9Nux ppt.cc/fL5Kyx ppt.cc/fIr1ax ppt.cc/f71Yqx tecmint.com linuxcool.com linux.die.net linux.it.net.cn ostechnix.com unix.com ubuntugeek.com runoob.com man.linuxde.net bit.ly/2EzoUDo bit.ly/2tW6eYT bit.ly/2X6vadl bit.ly/2viLpHU linuxprobe.com linuxtechi.com howtoforge.com linuxstory.org systutorials.com ghacks.net linuxopsys.com v.gd/2P9wTx v.gd/FtfpqE v.gd/eMfHsm v.gd/Ub7mqv v.gd/RReVk0 v.gd/vS3uTI v.gd/4Zxmba
Total Pageviews
Wednesday, 15 November 2017
Make slideshow GIF from a batch of images using ImageMagick
Labels:
linux
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment