Configure the Session
You can customize the behavior of your File Content Extraction session by setting optional configuration options through the config
property of the FilterSession
object. The following example enables logical ordering for PDF files:
Copy
session.config.logical_pdf_direction(kv.LogicalPDFDirection.automatic)
You can also chain configuration options:
Copy
session.config.hidden_text(True).header_and_footer(True)