Hi!
Im using cordova-plugin-camera and the plugin returns the image in base64 format. The API that i need to sent this image, only accepts object File.
Searching how to convert a base64 format to object File, all the answers are using the javascript constructor new File()
Testing in browser works fine, returns a object File. But when testing in ionic view on iphone, returns a object Object and not a object File.
Any idea how to solve this? Or cordova-plugin-camera have some method to return object File and not base64 format?
Thanks!