upload image with IOS device and TMSFMXCloudBoxNet

Hi, is it possible upload an image captured with the camera
and stored in an IOS device?, I see that your FMX.TMSCLoudBase
class has 3 function

 function Upload(Folder: TTMSFMXCloudItem; const FileName: string): TTMSFMXCloudItem; overload; virtual;
    function Upload(Folder: TTMSFMXCloudItem; const FileName: string; Description: string): TTMSFMXCloudItem; overload; virtual;
    function Upload(FolderName: string; const FileName: string): TTMSFMXCloudItem; overload; virtual;

but , I  can't get the path the image stored in the device,
maybe a new function that accept parameter TStream?,

    function Upload(FolderName: string; const FileName: TStream): TTMSFMXCloudItem; overload; virtual;

or maybe take picture of a Timage?

any idea?

thanks    

Hi,


Thank you for your suggestion.
We'll consider adding support to upload from a TStream in a future version.

As a workaround you can try to save the TStream to a file and then upload from that file.


Thanks Bart