ITextRenderer: Adjust page height to content

寵の児 提交于 2019-12-09 16:21:54

问题


I'm using ITextRenderer to generate a PDF from HTML and what I need to do is a cash register receipt. This receipt has dynamic width and, of course, dynamic content. This said, the height of content will always be different and right now I'm struggling to find a way of adjusting the height of the PDF page to the content. If it's too big the receipt has a long white section in the end and if it's to short the PDF get's paginated and I need it to be in one page only.

I'm using @page {size: Wpx Hpx;} to set the page size, but it's almost impossible (would be very painful) to calculate the content height based on width and data.

This is the code that generates the PDF:

ITextRenderer renderer = new ITextRenderer();

byte[] bytes = htmlDocumentString.toString().getBytes("UTF-8");
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
InputSource is = new InputSource(bais);
Document doc = builder.parse(is);

renderer.setDocument(doc, null);

renderer.layout();
renderer.createPDF(outputStream);
outputStream.flush();
outputStream.close();

I've also tried renderer.getSharedContext().setPrint(false);, but this throws a NPE.

Also @page {-fs-page-sequence: "none";} without any luck.


回答1:


The solution I found is not even close to perfect, but works!

@page {
    size: Wpx 1px;
}
* { 
    page-break-inside: always; 
}

This will generate 1px pages for the entire content. Then I just have to tell the printer to print all the pages with 0px margin between pages.

Why this solution is not perfect? The file size goes from 1 or 2KB to 200KB.. not very good, when streaming through 3G.



来源:https://stackoverflow.com/questions/15280995/itextrenderer-adjust-page-height-to-content

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!