I was working on a little app and I was trying to upload images to Parse. These images are taken with camera using the cordova camera plugin (I am using ngCordova). Well my question is, the camera plugin can return the image in base64 or an url. I've read that is not a good practice manipulating base64 encoded images because this leads to memory problems. The alternative I think was using Cordova File Transfer plugin but the problem is Parse does not support "multipart/form-data". So, What method should I use to upload images to Parse? I also thought of using Javascript Parse SDK which lets me upload files in base64 but I am still concern of memory leaks.
Thanks you all very much