else
{
// No paper edges. We print the Graph as it is to a single image.
Dimension graphPixelSize = _printable.initPrintNoScaleSinglePage();
SaveToFilePageFormat pf = new SaveToFilePageFormat(graphPixelSize);
BufferedImage img = prepareImage(graphPixelSize.width, graphPixelSize.height);
_printable.print(img.getGraphics(), pf, 0);
images.add(img);