Advertisement
metalx1000

Sony Camera Burst Shot JPG to Animated GIF - Imagemagick

Aug 17th, 2013
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. new_name="$(echo "$1"|cut -d\. -f1)"
  4.  
  5. convert $1 -crop 320x240+0+0 +repage 1.png
  6. convert $1 -crop 320x240+320+0 +repage 2.png
  7. convert $1 -crop 320x240+640+0 +repage 3.png
  8. convert $1 -crop 320x240+0+240 +repage 4.png
  9. convert $1 -crop 320x240+320+240 +repage 5.png
  10. convert $1 -crop 320x240+640+240 +repage 6.png
  11. convert $1 -crop 320x240+0+480 +repage 7.png
  12. convert $1 -crop 320x240+320+480 +repage 8.png
  13. convert $1 -crop 320x240+640+480 +repage 9.png
  14.  
  15. convert *.png -delay 100 -loop 0 $new_name.gif
  16. rm *.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement