v24.10
Added new Plugin: PDF/A Converter
- A new PDF/A conversion feature has been introduced, allowing users to easily convert standard PDF files to PDF/A compliant documents.
Example Usage:
var options = new PdfAConvertOptions
{
PdfAVersion = PdfAStandardVersion.PDF_A_3B
};
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
options.AddOutput(new FileDataSource("path_to_the_converted_file.pdf"));
var plugin = new PdfAConverter();
plugin.Process(options);
Bug Fixes
- Fixed issues related to the
FileResult
class that resulted in incorrect output paths. - Resolved minor bugs affecting the
HtmlConverter
when handling large files.
Improvements
- Enhanced performance of
PdfExtractor
andImageExtractor
for faster processing times. - Updated the
RotateOptions
class to support additional rotation angles.