v26.1

Fitur Baru Extract Properties untuk PDF Extractor

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

Contoh Penggunaan:

Contoh ini menunjukkan cara Mengekstrak Properti (Title, Author, Subject, Keywords, Number of Pages) dari file PDF.

// 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:

Contoh ini menunjukkan cara Mengekstrak Properti (Title, Author, Subject, Keywords, Number of Pages) dari aliran PDF.

// 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:

Contoh ini menunjukkan cara Mengekstrak Properti dari file PDF dalam gaya yang paling singkat.

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

Penyempurnaan

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

Bug yang Diperbaiki

  • Kesalahan muncul ketika mencoba mengoptimalkan file PDF
  • Masalah penyelarasan vertikal bidang formulir
  • Masalah yang diperbaiki dengan penampilan teks Jepang di FormField
  • 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 selama konversi
  • Konversi PDF ke HTML kehilangan beberapa tautan
  • Teks hilang saat mengonversi PDF ke HTML
 Indonesia