My experience with shooting images, as dylan202 suggested, was that the quality of the images did not match the value. Since I needed images for presentation.
Another way to get high-quality images of your Jung network is to use the VectorHraphics library from FreeHEP.
I used this library to create images in a pdf file. Subsequently, I took snapshots of the image from a pdf file for presentation.
JPanel panel = new JPanel (); panel.setLayout(new FlowLayout()); panel.setBackground(Color.WHITE); panel.add(vv); Properties p = new Properties(); p.setProperty("PageSize","A4"); // vv is the VirtualizationViewer VectorGraphics g = new PDFGraphics2D(new File("Network.pdf"), vv); g.setProperties(p); g.startExport(); panel.print(g); g.endExport();
It is also possible to create JPEG files or another type. For example, to generate SVG files, you need to change only one line:
VectorGraphics g = new SVGGraphics2D(new File("Network.svg"), vv);
See manual for more information.
PDF file snapshot reduced 
2c00L source share