Hi,
I try to convert a XFA pdf to a standard flatten pdf.
i try this :
Aspose.Pdf.Document document = new Aspose.Pdf.Document(fileName);
// document.Form.Type = Aspose.Pdf.InteractiveFeatures.Forms.FormType.standard;
document.Flatten();
document.Save(FileNameOut);
If i force the type to Standard, apose create an exeption (see attach)
Without this form.type, a pdf is create but javascrip is allways in the pdf destination.
How can I convert xfa pdf ?
Thks.