Skip to content

Instantly share code, notes, and snippets.

@matthiasplappert
Created May 27, 2012 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthiasplappert/2815224 to your computer and use it in GitHub Desktop.
Save matthiasplappert/2815224 to your computer and use it in GitHub Desktop.
import java.io.File;
import java.io.IOException;
public final class Test {
private Test() {
}
public static void main(String[] args) {
try {
ImageIO.read(new File("input2.jpg"));
} catch (IOException e) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment