Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [birt-dev] PDF issue on multi page report: only last page is correctly rendered

Bug fixed by setting PDFRenderOption differently:

Before correction:

final PDFRenderOption pdfOptions = new PDFRenderOption(options);
pdfOptions.setOption(IPDFRenderOption.FIT_TO_PAGE, new Boolean(true));
pdfOptions.setOption(IPDFRenderOption.PAGEBREAK_PAGINATION_ONLY, new
Boolean(true));

After correction:

final PDFRenderOption pdfOptions = new PDFRenderOption(options);
pdfOptions.setOption(IPDFRenderOption.FIT_TO_PAGE, Boolean.TRUE);
pdfOptions.setOption(IPDFRenderOption.PAGEBREAK_PAGINATION_ONLY,
Boolean.FALSE);


-- 
View this message in context: http://www.nabble.com/PDF-issue-on-multi-page-report%3A-only-last-page-is-correctly-rendered-tp17316656p17421259.html
Sent from the Eclipse BIRT - Dev mailing list archive at Nabble.com.



Back to the top