Search code examples
c#pdfpdf-generationxsl-fo

PDF file getting corrupted for ibex Engine


Im using Ibex engine for PDF Generation. My PDF Document is getting corrupted if i set this property to my table row

<fo:table-row font-size="8pt" keep-together.within-column="always" > 

Is there any specfic case where i need to use these property


Solution

  • keep-together.within-column="always" is a potential source of trouble. If your table row becomes longer than the page, the formatter will still try to render the row on one page, potentially writing over the page footer and off the page. Try setting it to a numerical value instead: keep-together.within-column="100"