Skip to content

Instantly share code, notes, and snippets.

@kaja47
kaja47 / gist:3876064
Created October 11, 2012 22:51
Content-aware image cropping with Scala
import javax.imageio.ImageIO
import java.io.File
import java.awt.image.BufferedImage
import java.awt.{ RenderingHints, AlphaComposite }
// Content-aware image cropping with ChunkyPNG
// https://gist.github.com/a54cd41137b678935c91
final class Cropper(file: String) {
val image = ImageIO.read(new File(file))