5
Hi! I’m using Xamarin.Forms to make an app. So, I need to save images to Parse. To do this, I need to convert the images to byte[]. Any idea how I can do this ? I’ve looked on the internet but none of the solutions worked for me. In the Parse documentation there is an example of how to do with a text file :
byte[] data = System.Text.Encoding.UTF8.GetBytes("Working at Parse is great!");
ParseFile file = new ParseFile("resume.txt", data);
Xamarin won’t let me use System.Drawning.Image, so most conventional methods for c# won’t work. Any idea how I can do that ?
Thank you !