Skip to content
Advertisement

how to embed an image in a JSON response

I’m using Jimp to read in a JSON string that looks like this:

enter image description here

As you can see the image node is a base64-encoded JPEG.

I’m able to succesfully convert it to a TIFF and save it:

JavaScript

However, when I attempted to embed the tiff inside of a JSON object, the TIFF gets all garbled up:

JavaScript

enter image description here

Here’s the full code:

JavaScript

How do we embed the tiff inside of a JSON payload?

If this output is non-negotiable, how would I render the tiff from the saved payload?

Advertisement

Answer

Well since you confirmed you are looking for output with context.res here is my working sample.. note that there is a maximum response size, so you can’t return every image/file the way I am returning the image here

JavaScript

(Offtopic but I saw that you are using blob storage so..) if you plan on storing photos/files/anything in Azure Blob Storage and you want to retrieve them in some systematic way you will find out very fast that you can’t query the storage and you have to deal with ugly XML. My work around to avoid this way to create a function that stores photos/files in Blob Storage but then saves the url path to the file along with the file name and any other attributes to a mongo storage. So then I can make super fast queries to retrieve an array of links, which point to the respective files.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement