I have an object with a number of public properties where one is of type image. I am trying to serialise this using json.net and assume that I will need to base64 encode th
I would recommend in this case to convert the image to base64 and then serialize it, here an example of how to do it in C#: Convert Image to Base64