Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created September 17, 2013 06:41
Show Gist options
  • Save dodyw/6590786 to your computer and use it in GitHub Desktop.
Save dodyw/6590786 to your computer and use it in GitHub Desktop.
Simple android crop based
File imgFile = new File("/mnt/sdcard/ektp_baru_blur.jpg");
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
Bitmap destBitmap = Bitmap.createBitmap(myBitmap, 100,0,1410,myBitmap.getHeight());
finalImg.setImageBitmap(destBitmap);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment