Created
September 17, 2013 06:41
-
-
Save dodyw/6590786 to your computer and use it in GitHub Desktop.
Simple android crop based
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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