BitmapFactory.Options options = new BitmapFactory.Options();
  options.inSampleSize = 4;
  Bitmap bitmap = BitmapFactory.decodeFile(videoPath, options);

int imageHeight = bitmap.getHeight();
 int imageWidth = bitmap.getWidth();
  
  Log.d("first imageHeight=============================",""+imageHeight);
  Log.d("first imageWidth=============================",""+imageWidth);

사진 이미지를 불러 와서 서버로 전송 하고 있습니다 .

이미지를 불러 와 사이즈를 확인 하니 가로,세로 사이즈가 줄어 들었는 데 .

서버 쪽에서 파일을 확인 하니 그대로 입니다 ..

이게 실 사이즈가 줄어 드는 건 아닌 가요 ??

이미지 뷰에 보이는 사이즈 인가요 ??


 답변 좀 해주세요 ..

ㅜㅜ