mikera / clisk

The Clojure Image Synthesis Kit
281 stars 13 forks source link

Is is possible use your library for rendering image sequense in single window? #5

Closed proofit404 closed 11 years ago

proofit404 commented 11 years ago

For example I need render png image sequence in single window in my app. Is it possible to use you library for my aim?

P.S. Sorry for this issue, but I can't find other way to contact with you.

mikera commented 11 years ago

Yes that should definitely be possible.

(clisk.core/img some-function) basically creates a BufferedImage, which you can render into a window however you like. With a bit more hacking you could create a sequence of BufferedImages and play them in an animation (in a loop, for example).

proofit404 commented 11 years ago

Yes, works fine. Thank you for feed back.