I need to show all panorama photo in Gallery android. But it extension is jpg same regular photo.
How can I check a photo in Gallery android is Panorama
Ask the mediadatabase through a filter condition
Where ((height/width > 2) or (width/height >= 2))
something like this
ContentResolver resolver = context.getContentResolver();
Cursor query = resolver.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
sqlSelectColums, '((height/width > 2) or (width/height >= 2))',
null, sqlSortOrder);