How to read the selected photo details in ionic3

i’m currently working on reading photo details from gallery like creation date, time, geolocation on Android,iOS . But i have tried with native-plugin photo-library. using this i can read all photos details at a time. But i need to view detials for only selected photo. How can i do ?

after you got libraries from photo-library and put it on the UI something like '<ion-item *ngFor=‘let photo of photoes’> <img src=‘photo’ (click)=‘yourevent(photo)’ />

the ‘photo’ is you want to get.

Thanks , But it returns only URL right, i need all datas like (bitmap data, metadata)…

Thanks in advance