Converting Bitmap to text with as less characters as possible C#
I am using an API call to store the data of some receipts and I want to extend the functionality and be able to somehow store an image that will be used as a signature for the receipt. I tried to store the image in a Bitmap property I created, but I found out that there’s a problem with bitmaps and serialization/deserialization in JSON. I also tried to store the bytes of the image, but I had a significantly large amount of bytes (800.000) and there was a problem sending that info into the server.