v25.3

Added new Plugin: Form Flattener

  • Class FormFlattener: Represents Documentize.FormFlattener plugin which is used to flatten fields in PDF documents.
  • Class FormFlattenerOptions: Represents options for Flatten Fields in document by Documentize.FormFlattener plugin.

Example Usage:

//The example demonstrates how to Flatten fields in PDF file.
// Create FormFlattenerOptions object to set instructions
var options = new FormFlattenerOptions();
// Add input file path
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Set output file path
options.AddOutput(new FileDataSource("path_to_result_pdf_file.pdf"));
//Optional parameter for skip the field with name "Surname".
options.SkipFields.Add("Surname");
// Perform the process
FormFlattener.Process(options);

//The example demonstrates how to Get Field Names from PDF file.
var fieldNames = FormFlattener.GetFieldNames("path_to_your_pdf_file.pdf");

Minor Fixes

  • Improved class hints and examples.
Mar 18, 2025