Guest User

Untitled

a guest
Feb 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public void performCloudVisionRequest(Uri uri) {
  2. if (uri != null) {
  3. try {
  4. Bitmap bitmap = resizeBitmap(
  5. MediaStore.Images.Media.getBitmap(getContentResolver(), uri));
  6. callCloudVision(bitmap);
  7. selectedImage.setImageBitmap(bitmap);
  8. } catch (IOException e) {
  9. Log.e(TAG, e.getMessage());
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment