Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfConversionReport Class

Contains information a PDF file conversion process.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Docs.v24.2.dll

NuGet Package: DevExpress.Document.Processor

#Declaration

public class PdfConversionReport

The following members return PdfConversionReport objects:

#Remarks

Use the PdfDocumentConverter.ConversionReport property to obtain a PdfConversionReport object.

You can use the following properties to check whether conversion was successful:

PdfConversionReport.ConversionStatus
Gets the conversion status of the resulting PDF document.
PdfConversionReport.Issues
Gets the collection of issues occurred during PDF document conversion.

The following code snippet converts the “PdfAConversionDemo.pdf” file to PdfA2b format and displays the conversion status and issues in the console:

using DevExpress.Pdf;
// ...
// Obtain a file to convert.
var filePath = "PdfAConversionDemo.pdf";
var converter = new PdfDocumentConverter(filePath);
// Convert the file to the specified format.
converter.Convert(PdfCompatibility.PdfA2b);
converter.SaveDocument("PdfAConversionDemoResult.pdf");

// Specify and display a conversion report.
var status = converter.ConversionReport.ConversionStatus;
Console.WriteLine($"Status: {status}");
Console.WriteLine("Issues:");
var issues = converter.ConversionReport.Issues;
foreach (var issue in issues){
    Console.WriteLine($"{issue.Severity}: {issue.Message}");
}

The image below displays the conversion report.

Conversion Report

#Inheritance

Object
PdfConversionReport
See Also