Release pdfHTML 6.3.2
Release date:
pdfHTML is an iText Core add-on for Java and .NET to create PDF from HTML/XML (and associated CSS).
For this release we took the opportunity to reflect the improved Well-Tagged PDF (WTPDF) creation in iText Core 9.6.0 to enable WTPDF conformance support in pdfHTML. We also added support for one CSS pseudo-class, and improved the implementation of another, along with some more minor refinements and bug fixes.
As noted in the Mozilla Developer Network documentation, the :has() pseudo-class matches an element when the selector inside finds a match relative to that element. In simple terms it can be called a “parent selector”, as it allows you to style a parent (or even an element that comes before another) based on what it contains or comes after it.
We actually added this to help with the release-notes-to-pdf generator we recently open-sourced, as we found it would be useful when referencing the table of contributors to a specific release version. Hopefully someone else will find it useful too!
The other pseudo-class is the :not() selector for the @page at-rule. You can now specify @page :not(:first) to apply styles to all pages except the first page, whereas before it behaved incorrectly.
We’ve refactored how pdfHTML handles dependency injection, related to the changes to make StampingProperties and DocumentProperties stateless in iText Core 9.6.0:
ConverterPropertiesnow stores dependency suppliers instead of dependency instances, and new methods to access dependency classes and retrieve a dependency’s supplier have been introduced.ProcessorContextwas updated to register dependencies using the new supplier-based API, while the oldgetDependencies()API is now marked as deprecated and returns fresh instances created via suppliers.
An issue with positioning of elements (such as list items) being lost when the block is split across pages was resolved, along with an issue with HTML tables using collapsed borders with large rowspans that overflow/split onto a new page.t()
Downloads
iText pdfHTML – 6.3.2 (Java) | N/A | |||
iText pdfHTML – 6.3.2 (.NET) | N/A |
Changelog
New feature
Improvement
Bug fixes
|
eBooks
Converting HTML to PDF with pdfHTML
Installation Instructions
Examples (latest ones)
FAQ (latest ones)
Chapter 7: Frequently Asked Questions about pdfHTML