Created
January 5, 2016 08:58
-
-
Save ponkotuy/c168b2ab145db5e3194a to your computer and use it in GitHub Desktop.
ImageIOのサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File | |
import javax.imageio.ImageIO | |
object Main extends App { | |
assert(args.nonEmpty) | |
val image = ImageIO.read(new File(args.head)) | |
println(image.getWidth, image.getHeight) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment