SpencerPark / IJava

A Jupyter kernel for executing Java code.
MIT License
1.07k stars 211 forks source link

visualization of png, svg, jpeg #124

Closed reyh-EIS closed 2 years ago

reyh-EIS commented 2 years ago

as a newbie. is it possible to visualize graphics (e.g. /temp/test.png) within the notebook?

reyh-EIS commented 2 years ago

solved: String source = "test_out.png"; BufferedImage img=ImageIO.read(new File(source)); display(img);