Hello,
I need to convert pdf file into PDF_A_1B format. Initial pdf contain Acroform dropdown elements.
After convertion umlauts replaced by wrong characters, but only in dropdown elements.
image.png (168.7 KB)
.NET Total libraries version: 24.2.0
.NET Code:
using FileStream fileStream = new FileStream(inputFile, FileMode.Open, FileAccess.Read);
var doc = new Aspose.Pdf.Document(fileStream);
doc.Convert($"{outputFile}-convert-log.xml", PdfFormat.PDF_A_1B, ConvertErrorAction.Delete);
doc.Save(outputFile);
Pdf file to reproduce the issue.
hv-pa-md-006_new.pdf (128.9 KB)
Best regards,
Dmitry