Incorrect display of circle chart when converting .docx file to PBFA format

When converting a WORD(.docx) document with a circular diagram to PDFA. The pie chart is displayed incorrectly, all other diagrams are fine. We use ASPOSE 24.3.0 version.


Input file:
input file.docx (304.4 KB)

Result file:
result.pdf (280.9 KB)

Code:

var document = new Document(inputFilePath);
document.Save(outputFilePath, pdfSaveOptions);

All parameters of the pdfSaveOptions object can be found in the pdfSaveOptions.txt file in zip.
pdfSaveOptions.zip (1.4 KB)

@uaprogrammer The problem occurs be cause PdfA1 compliance does not support transparency. Please consider using PsdA2 compliance instead:

Document doc = new Document(@"C:\Temp\in.docx");
PdfSaveOptions opt = new PdfSaveOptions();
opt.Compliance = PdfCompliance.PdfA2a;
doc.Save(@"C:\Temp\out.pdf", opt);

PdfCompliance.PdfA1b is obsolete: PDF/A-1 have significant limitations which are removed in PDF/A-2.