Another quick question

Can we do offscreen rendering with the current Xith3D build?

view.getSnapshot(canvas, “some file name here”);

read it back in with

java.io.File file = new java.io.File(“filename”);
try
{
javax.imageIO.read(bufferedImage, “typ”, file);
}
catch(IOException io)
{
io.printStackTrace();
}

to get a BuffereImage use

BufferedImage buffer = view.getSnapshot(canvas);

::slight_smile:

Completely useless for what I intended to use it:-/