v26.3

Đổi tên IDataSource thành IData

  • Interface IDataSource: đổi tên thành IData.
  • Các lớp tùy chọn giờ dễ sử dụng hơn.

Đổi tên FileDataSource thành FileData

  • Class FileDataSource: đổi tên thành FileData.
  • Các lớp tùy chọn giờ dễ sử dụng hơn.
  • Đã cập nhật và sửa các chú thích XML.
  • Tất cả các ví dụ với Input và Output đã được cập nhật.

Ví dụ sử dụng:

The example demonstrates how to use FileData in Input and Output.

// Create EncryptOptions object to set instructions
var options = new EncryptOptions("123456", "qwerty");
// Add input file path
options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
// Set output file path
options.AddOutput(new FileData("path_to_result_pdf_file.pdf"));
// Perform the process
PdfSecurity.Encrypt(options);

Đổi tên StreamDataSource thành StreamData

  • Class StreamDataSource: đổi tên thành StreamData.
  • Các lớp tùy chọn giờ dễ sử dụng hơn.
  • Đã cập nhật và sửa các chú thích XML.
  • Tất cả các ví dụ với Input và Output đã được cập nhật.

Ví dụ sử dụng:

The example demonstrates how to use StreamData in Output.

// Create TocOptions object to set instructions
var options = new TocOptions();
// Set the Title
options.Title = "My Table of Contents";
// Design Headings
options.Headings.Add(new TocHeading("Introduction", 2, false, 1));
// Add input file path
options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
// Set output stream 
var outputStream = new MemoryStream();
options.AddOutput(new StreamData(outputStream));
options.CloseOutputStreams = false;
// Perform the process
PdfManager.AddTableOfContents(options);

Đổi tên DirectoryDataSource thành DirectoryData

  • Class DirectoryDataSource: đổi tên thành DirectoryData.
  • Các lớp tùy chọn giờ dễ sử dụng hơn.
  • Tất cả các ví dụ với Input và Output đã được cập nhật.

Ví dụ sử dụng:

The example demonstrates how to Export Form values to TSV file and set Properties.

// Create PdfToTiffOptions object to set instructions
var options = new PdfToTiffOptions();
// Add input file path
options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
// Set output Directory path
options.AddOutput(new DirectoryData("path_to_output_directory"));
// Perform the process
PdfConverter.Convert(options);

Đổi tên thuộc tính Delimiter cho Feature ExtractFormDataToDsvOptions

Một lỗi đánh máy trong các từ đã được sửa.

Ví dụ sử dụng:

The example demonstrates how to Export Form values to TSV file and set Properties.

// Create ExtractFormDataToDsvOptions object to set instructions
var options = new ExtractFormDataToDsvOptions();
//Set Delimiter
options.Delimiter = '\t';
//Add Field Names to result
options.AddFieldName = true;
// Add input file path
options.AddInput(new FileData("path_to_your_pdf_file.pdf"));
// Set output file path
options.AddOutput(new FileData("path_to_result_csv_file.tsv"));
// Perform the process
PdfExtractor.Extract(options);

Đã tạo trang sản phẩm cho “PDF Manager” cho trang này

https://products.documentize.com/pdf-manager/

Đã tạo trang sản phẩm cho “PDF Form” cho trang này

https://products.documentize.com/pdf-form/

Sửa lỗi

  • Sửa lỗi khi Image to PDF gây ra ngoại lệ Out of Memory
  • Sửa lỗi khi tạo Table of Contents cho ra kết quả không đúng
  • Sửa lỗi khi thuộc tính OptimizeResources UnembedFonts gây ra ngoại lệ
  • Sửa lỗi khi PDF to HTML không áp dụng phông chữ đúng khi xem trong Internet Explorer
  • Sửa lỗi khi PDF to HTML tạo ra các phần tử và ký hiệu định dạng bị sai vị trí
  • Sửa lỗi khi quá trình chuyển PDF sang PDF/A bị treo
  • Sửa lỗi khi PDF sang PDF/A bỏ các trường biểu mẫu và giá trị của chúng
  • Sửa lỗi khi đầu ra PDF sang PDF/A không tuân thủ PDF/A_1a
  • Sửa lỗi khi đầu ra PDF sang PDF/A không tuân thủ PDF/A_2b
  • Sửa lỗi khi đầu ra PDF sang PDF/A-3A không vượt qua kiểm tra tuân thủ Preflight
  • Sửa lỗi khi đầu ra PDF sang PDF/A-3B không vượt qua kiểm tra tuân thủ Preflight
4 thg 3, 2026
 Tiếng Việt