Skip to content

Instantly share code, notes, and snippets.

@zurche
Created February 13, 2017 18:08
Show Gist options
  • Save zurche/852b0d162954203dec0ff76fed8f86f7 to your computer and use it in GitHub Desktop.
Save zurche/852b0d162954203dec0ff76fed8f86f7 to your computer and use it in GitHub Desktop.
This is how you check the image taken by the camera
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
checkImageLogo(encodeImage(imageBitmap));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment