}
}
LegendComponent comp = (LegendComponent) printDtoService.toInternal(legend);
PageComponentImpl page = new PageComponentImpl();
page.setSize("0 0", false);
page.addComponent(comp);
PrintTemplate template = new PrintTemplate();
template.setPage(page);
SinglePageDocument pdfDoc = new SinglePageDocument(page, null);
FileOutputStream fo = new FileOutputStream("target/legend.png");
pdfDoc.render(fo, Format.PNG);