v26.4

Fixed PdfExtractor.Extract exception

  • Method PdfExtractor.Extract: does not throw an exception if Created and Modified dates are not found in the input document.
  • Property PdfProperties.Created: return null if value are not found in the input document. Data type changed from “DateTime” to “DateTime?”.
  • Property PdfProperties.Modified: return null if value are not found in the input document. Data type changed from “DateTime” to “DateTime?”.

Example Usage:

The example demonstrates how to Extract Created and Modified Properties

// 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 created = pdfProperties.Created;
var modified = pdfProperties.Modified;

Improved PDF to TIFF Rendering Performance

Created product page for “PDF Converter” for this site

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

Other fixes

  • Fixed HTML to PDF – Performance is very slow with large HTML text
  • Fixed HTML to PDF – Header and footer do not appear on subsequent pages
  • Fixed HTML to PDF – Tooltip fails to render correctly
  • Fixed PDF to DOC – Conversion triggers OutOfMemory exception
  • Fixed PDF to XLS – Merged columns are combined into a single column
  • Fixed PDF to HTML – Background images are missing
  • Fixed PDF to HTML – Local hyperlinks are not displayed
  • Fixed PDF to JPEG – Output image appears black
  • Fixed PDF to PDF/A – Formatting problems in the resulting file
  • Fixed PDF to PDF/A_1b – Resulting file is not compliant
  • Fixed PDF to PDF/A_3b – Text formatting issues in the output file
  • Fixed PDF to PDF/A-2B – Conversion removes math characters when using OpenType MATH fonts
Apr 10, 2026
 English