/** 이미지 가로 가져오기 **/
public static int getWidthHeightOfBitmap( String fileName ){
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(fileName, options);
return options.outWidth;
} catch(Exception e) {
return 0;
}
}
/** 이미지 세로 가져오기 **/
public static int getHeightOfBitmap( String fileName ){
try {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(fileName, options);
return options.outHeight;
} catch(Exception e) {
return 0;
}
}
'Android' 카테고리의 다른 글
Android WebView 에서 가로 스크롤만 막아보기 (0) | 2013.01.11 |
---|---|
WebView 로딩 속도 높이기 (0) | 2013.01.11 |
android background 음성인식 동작 (0) | 2012.12.14 |
이클립스 android 플러그인 설치 (0) | 2012.11.20 |
Juno 이클립스에서 SVN 플러그인 설치 후 실행 오류 (0) | 2012.11.20 |