프로그래밍/JAVA
자바에서 이미지 파일 사이즈 구하기
기타 치는 개발자
2014. 12. 19. 18:10
try
{
File file = new File('파일경로');
BufferedImage bi = ImageIO.read(file);
System.out.println("width : " + bi.getWidth() + " height : " + bi.getHeight() );
} catch( Exception e ) {
System.out.prinln("이미지 파일 아님");
}