Skip to main content

image

function Deno.jupyter.image
unstable
Jump to headingimage(path: string): Displayable

Display a JPG or PNG image.

Deno.jupyter.image("./cat.jpg");
Deno.jupyter.image("./dog.png");

Parameters Jump to heading

Jump to headingpath: string

Return Type Jump to heading

Jump to headingimage(data: Uint8Array): Displayable

Display a JPG or PNG image.

const img = Deno.readFileSync("./cat.jpg");
Deno.jupyter.image(img);

Parameters Jump to heading

Jump to headingdata: Uint8Array

Return Type Jump to heading

Back to top