Hi! I'm using Xamarin.Forms to make an application. So, I need to save images in Parse. To do this, I need to convert the images to byte []. Any idea how I can do this? I already searched the internet but none of the solutions worked for me. In the Parse documentation you have an example of how to do it with a text file:
byte[] data = System.Text.Encoding.UTF8.GetBytes("Working at Parse is great!");
ParseFile file = new ParseFile("resume.txt", data);
Xamarin will not let me use System.Drawning.Image, so most of the conventional methods for C # will not work. Any ideas how I can do this?
Thank you!