gif-clj is a small animated-gif encoder using this java implementation.
(write-gif "out.gif" ;; output filename
(imgs-from-files <files>) ;; input files (imgs-from-files reads the images lazily)
100 ;; delay in ms
0) ;; nr of loops (0 = never stop)
write-gif returns false if an IOException occured (this is because of the java implementation).
- provide better exception (or any) handling
- tests
- reimplementing the java implementation.
Copyright (C) 2011 Robin Ramael
Distributed under the Eclipse Public License, the same as Clojure.