Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Mark Engelberg
Can anyone point me to a PIL-like library that will work from Clojure? Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com To

Re: Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Korny Sietsma
I'm interested too - got some ruby stuff using rmagick I'd like to rewrite - there's jmagick but it sounds like a pain to get it working on osx, and there's a library that wraps imagemagick command-line, but something native that supports: - 48 bits-per-pixel images - colour profiles - digital

Re: Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Albert Cardona
Mark Engelberg wrote: Can anyone point me to a PIL-like library that will work from Clojure? Hi Mark, We use clojure to handle the java-only ImageJ application and library. It's not what you'd call an industrial-strength library, but rather a dedicated practical application for scientific

Re: Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Albert Cardona
Hi Michael, This looks really interesting. One thing I noticed, though, is that the page links to clojure.sourceforge.net as the Clojure web site. Although that does redirect to the correct place (clojure.org) it could give people the false impression that Clojure is still hosted on

Re: Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Michael Wood
Hi Albert On Thu, Mar 12, 2009 at 4:06 PM, Albert Cardona sapri...@gmail.com wrote: Hi Michael, [...] Because ImageJ's ij.jar became a library long after being just an application. There is no concept of MVC, and thus GUI classes are mixed with processing and controller constructs. What's

Re: Java equivalent to Python's Imaging Library (PIL)

2009-03-12 Thread Michael Wood
Hi Albert On Thu, Mar 12, 2009 at 4:06 PM, Albert Cardona sapri...@gmail.com wrote: Hi Michael, [...] Because ImageJ's ij.jar became a library long after being just an application. There is no concept of MVC, and thus GUI classes are mixed with processing and controller constructs. What's