I'm running into an interesting issue with the latest version. I am converting a multi-table html doc into a PDF, with repeat table headers turned on. The issue is that for the first page of any table that has been split, it creates a duplication of the table header.
So like:
* Table 1 Page 1
* Table 2 Page 1
* Table 2 Page 1
* Table 2 Page 2
* Table 3 Page 1
* Table 4 Page 1
Here is the HTML I am processing:
https://p.teknik.io/Raw/q3NLpAnd here is the output of said conversion:
https://u.teknik.io/7R822.pdfThese are the options I am running it with:
OutputArea = new RectangleF(0.3f, 0.8f, 7.8f, 9f),
AutoFitX = HtmlToPdfAutoFitMode.None,
AutoFitY = HtmlToPdfAutoFitMode.None,
ZoomLevel = 0.96F
and FooterHtmlFormat = "<div style='text-align: center; font: 12px Helvetica;'>Page {page_number} of {total_pages}</div>"
I am running the latest version of EO.PDF (19.0.83.0).
Thoughts?