always use exif helper
This commit is contained in:
parent
27f42dfb63
commit
49920649db
|
@ -164,22 +164,6 @@ public class FileBackend {
|
|||
}
|
||||
|
||||
private int getRotation(Uri image) {
|
||||
if ("content".equals(image.getScheme())) {
|
||||
try {
|
||||
Cursor cursor = mXmppConnectionService
|
||||
.getContentResolver()
|
||||
.query(image,
|
||||
new String[] { MediaStore.Images.ImageColumns.ORIENTATION },
|
||||
null, null, null);
|
||||
if (cursor.getCount() != 1) {
|
||||
return -1;
|
||||
}
|
||||
cursor.moveToFirst();
|
||||
return cursor.getInt(0);
|
||||
} catch (IllegalArgumentException e) {
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
InputStream is = mXmppConnectionService.getContentResolver()
|
||||
.openInputStream(image);
|
||||
|
@ -188,7 +172,6 @@ public class FileBackend {
|
|||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public Bitmap getImageFromMessage(Message message) {
|
||||
return BitmapFactory.decodeFile(getFile(message).getAbsolutePath());
|
||||
|
|
Loading…
Reference in a new issue