Android 크롭 기능 없이 이미지 자르기
Uri이미지를 가운데를 기준으로 w, h 크기 만큼 crop한다. public Bitmap cropCenterBitmap(Uri uri, int w, int h) { Bitmap src = null; try { src = MediaStore.Images.Media.getBitmap(getContentResolver(), uri); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } if(src == null) return null; int wid..
2020.06.29