Working with images in Scala
Posted
by dbyrne
on Stack Overflow
See other posts from Stack Overflow
or by dbyrne
Published on 2010-05-26T19:47:11Z
Indexed on
2010/05/26
19:51 UTC
Read the original article
Hit count: 258
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.
© Stack Overflow or respective owner