SMALL

/** 이미지 가로 가져오기  **/

 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;

   }

 }


LIST