Advertisement
hackerboxes

convert png to jpg and gif

Aug 16th, 2013
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. convert *.png *.jpg
  2. convert -delay 350 -loop 0 *.png r.gif
  3. convert $(for ((a=0; a<24; a++)); do printf -- "--delay 10 *-%s.jpg " $a; done;) result.gif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement