I’m trying to move an image from the mobileimageviewer to ftp and losing my exif location data.
dim d as new CURLSMBS
dim JPEGData as string = MobileImageViewer.Image.ToData(Picture.Formats.JPEG, Picture.QualityHigh)
d.OptionUpload=true
d.Inputdata = JPEGData
…
Is there another option I need to set to move the location exif data?
Ok i’m getting the picture from the image picker and I get a picture file. What do I need to save it as to send it to FTP and maintain my exif data. I can do it fine in my windows app but have the image stored in a file there so it works fine using d.OpenMTInputFile(f). I initially thought this was not sending exif data either, but it seems to be fine.
The xojo imagepicker control called when I press a button
ImagePIcker1.source = MobileimagePicker.Source.Photos.
The selected picture is then saved as the image of a mobileimageviewer on the selected event