I have a sample JSON:
{
"userUuid": "ea02b5b7-2a5d-40b6-8edf-fa2ae1e204dc",
"userJson": {
"generalUser": {
"country": "United States",
"customer": "Test",
"state": "",
"Id": "a1",
"time": ":"
},
"emPass": {
"version": "s2.2.2",
"sn": "a",
"displayScreen": "0"
},
"additionalNotes": ""
},
"createdBy": 805
}
I want to convert this JSON in proper formatted image before storing it as a byte array.
Sample image example:
NOTE: The above image is just an example. The actual image should have data from sample JSON.
Is there any easy way to do that or Is it better to do that conversion at client side?