v25.3

Menambahkan Plugin Baru: Form Flattener

  • Class FormFlattener: Mewakili plugin Documentize.FormFlattener yang digunakan untuk meratakan field dalam dokumen PDF.
  • Class FormFlattenerOptions: Mewakili opsi untuk Meratakan Field dalam dokumen oleh plugin Documentize.FormFlattener.

Contoh Penggunaan:

// 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");

Perbaikan Kecil

  • Petunjuk kelas dan contoh yang ditingkatkan.
 Indonesia