I want full page snapshop of jpanel that have content larger than panel size so content is scrollable but I am unable to get snapshot of non visible area in JPanel. So far I have tried these codes
Container c = getContentPane();
BufferedImage img = new BufferedImage(c.getWidth(), c.getHeight(), BufferedImage.TYPE_INT_ARGB);
c.paint(img.getGraphics());
WritableImage snapshot = view.snapshot(new SnapshotParameters(), null);
RenderedImage renderedImage = SwingFXUtils.fromFXImage(snapshot, null);
and using Robot
but none of them worked for me.
For clarification of what is happening: https://pasteboard.co/I9kup9w.png