how can check panorama photo android?

前端 未结 2 2029
一整个雨季
一整个雨季 2021-01-17 05:33

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

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-17 05:51

    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);
    

提交回复
热议问题