Hello,
I have used your tool such an excellent.But i have found one issue ,I don’t know which is correct or not.
When i have tried to flatten the form field the font has changed .
[Input File] https://drive.google.com/file/d/0B9Ps8wFCYy0BXzNhb0EtU0dyajg/view?usp=sharing
[OutPutFile] https://drive.google.com/file/d/0B9Ps8wFCYy0BUk5Ma1ktWktkaVU/view?usp=sharing
I have use this code.
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(“fr-CA”);
string filename = “input.pdf”;
Aspose.Pdf.Facades.Form pdfForm = new Aspose.Pdf.Facades.Form("…/…/data/" + filename);
decimal dataValue = 10654.12m;
string s = dataValue.ToString(“N”);
pdfForm.FillField(“data”, s);
pdfForm.FlattenAllFields();
pdfForm.Save(filename);
Please help me.
Thanks