v25.1

Cải tiến Plugin: ImageExtractor

  • Đã thêm Bộ thu thập đầu ra vào ImageExtractorOptions.
  • Đã thêm hỗ trợ cho nhiều Đầu vào vào ImageExtractorOptions.
  • Đã sửa các luồng đầu ra bị đóng.

Ví dụ Sử dụng:

// create ImageExtractor object to extract images
var plugin = new ImageExtractor();
// create ImageExtractorOptions
var opt = new ImageExtractorOptions();
// add input file path
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// set output directory
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// perform extraction process
var resultContainer = plugin.Process(opt);
// get the image from the ResultContainer object
var imageExtracted = resultContainer.ResultCollection[0].ToFile();

Sửa lỗi nhỏ

  • Cải thiện gợi ý và ví dụ về lớp.
  • Xác minh chữ ký PDF.
  • Cải thiện hỗ trợ ký tự Trung Quốc.
 Tiếng Việt