I am trying to get a FileInputStream object on an image that the user selects from the picture gallery. This is the android URI returned by a
FileInputStream
URI
a
Found the correct way to open InputStream from content URI:
InputStream fileInputStream=yourContext.getContentResolver().openInputStream(uri);
That's all!