MobileImagePicker and EXIF

Is there a way to get the Exif data with the images when picking them? i am able to pick and display with no problem but the exif data is all missing.

Thanks
Sharon

What version of Xojo are you using?

Have you looked the “Metadata” property on the retrieved Images?

You can look/inspect the “MobilePicture-Metadata” example project.

2025R1. I save the images to ftp after retrieving and the exif data is missing. Can I look at the metadata on the image without saving? I’ll check out that example
Thanks

ok Looks like the mobileimagepicker does have the EXIF data in the picture, maybe it is getting lost when moving to FTP using CURLSMBS

My understanding is that the EXIF data is available when retrieving the picture with MobileImagePicker.
But will be lost as soon as you use Picture.Save or Picture.ToData because that will output the Xojo’s representation of the picture.

ok thanks!