v26.1

Fitur Baru Ekstrak Properti untuk PDF Extractor

  • Ekstrak Properti PDF: Title, Author, Subject, Keywords, Number of Pages.
  • Class PdfExtractor: menambahkan metode Extract untuk mengekstrak Properti PDF.
  • Class ExtractPropertiesOptions: Mewakili Opsi Ekstraksi Properti PDF untuk plugin PdfExtractor.
  • Class PdfProperties: Mewakili Properti dan informasi meta dari dokumen PDF.
  • Interface IHaveInput: Digunakan untuk Opsi dengan satu data input.
  • Class OptionsWithInput: Digunakan untuk Opsi dengan satu data input.
  • Full Free functional.

Contoh Penggunaan:

The example demonstrates how to Extract Properties (Title, Author, Subject, Keywords, Number of Pages) from PDF file.

// Create ExtractPropertiesOptions object to set input file
var options = new ExtractPropertiesOptions("path_to_your_pdf_file.pdf");
// Perform the process and get Properties
var pdfProperties = PdfExtractor.Extract(options);
var title = pdfProperties.Title;
var author = pdfProperties.Author;
var subject = pdfProperties.Subject;
var keywords = pdfProperties.Keywords;
var numberOfPages = pdfProperties.NumberOfPages;

Contoh Penggunaan:

The example demonstrates how to Extract Properties (Title, Author, Subject, Keywords, Number of Pages) from PDF stream.

// Create ExtractPropertiesOptions object to set input stream
var stream = File.OpenRead("path_to_your_pdf_file.pdf");
var options = new ExtractPropertiesOptions(stream);
// Perform the process and get Properties
var pdfProperties = PdfExtractor.Extract(options);
var title = pdfProperties.Title;
var author = pdfProperties.Author;
var subject = pdfProperties.Subject;
var keywords = pdfProperties.Keywords;
var numberOfPages = pdfProperties.NumberOfPages;

Contoh Penggunaan:

The example demonstrates how to Extract Properties from PDF file in the shortest possible style.

// Perform the process and get Properties
var pdfProperties = PdfExtractor.Extract(new ExtractPropertiesOptions("path_to_your_pdf_file.pdf"));

Peningkatan

  • Peningkatan HTML ke PDF mendukung teks alternatif untuk gambar
  • Kepatuhan PDF ke PDFA1b

Bug yang Diperbaiki

  • Terjadi kesalahan saat mencoba mengoptimalkan file PDF
  • Masalah penyelarasan vertikal Form Field
  • Masalah tampilan teks Jepang di FormField telah diperbaiki
  • HTML ke PDF – Masalah pemformatan tabel
  • Mengoptimalkan ukuran PDF sebelum konversi PDF ke PDF/A menghasilkan output yang rusak
  • PDF ke DOC – Tabel ditampilkan tidak tepat
  • PDF ke Excel – Masalah pemformatan file output
  • PDF ke HTML – ArgumentException saat konversi
  • Konversi PDF ke HTML kehilangan beberapa tautan
  • Teks hilang saat mengonversi PDF ke HTML
8 Mei 2026
 Indonesia