Can Deno Jupyter output images like jpegs?
Docs aren't super clear about this. I naively thought this would work:
But it just does normal console.log of the object.
But it just does normal console.log of the object.
const img = await Deno.readFile("./my-image.jpg");
await Deno.jupyter.display({
"image/jpeg" : img
})