views:

171

answers:

1

I am generating large PNG files from a Scala program. Currently, I am doing it the same way I would do it in java. I am creating a new BufferedImage and setting each pixel to the correct color. This works fine, but I am wondering if there are any good libraries for working with images in Scala? I am looking for something like Ruby's RMagick library.

+3  A: 

Maybe JMagick? Take a look here, it's a native interface between ImageMagick and Java exactly like RMagick..

Jack
Thanks, didn't realize this existed. Still, I am interested if something more idiomatic exists for Scala.
dbyrne