// todo: We should set some clipping or spanned pages will look funny ..
// and now process the box ..
final Graphics2D graphics = writer.getDirectContent().createGraphics(width, height, fontSupport);
final LogicalPageDrawable logicalPageDrawable = new LogicalPageDrawable(logicalPage);
final PhysicalPageDrawable drawable = new PhysicalPageDrawable(logicalPageDrawable, page);
drawable.draw(graphics, new Rectangle2D.Double(0,0, width, height));
graphics.dispose();
getDocument().newPage();
}