Is there a way to convert GridFS binary to a URL that can be used on a src?
Let me explain:
When an image is stored on mongoDB by GridFS it creates to files(fs.files & fs.chunks). In fs.chunks the data is stored like so:
_id:ObjectID('')
files_id:ObjectID('')
n:0
data:Binary('/9j/4S...',0)
Exist any way to convert that binary which is an image(a jpg to be precise) into a URL valid for a HTML img tag?
Some kind of URL.createObjectURL()
By the way, I tried to pass the binary file into URL.createObjectURL() and the displayed error is the following:
TypeError: URL.createObjectURL: Argument 1 is not valid for any of the 1-argument overloads.
Thanks in advance.