Hi,
using an ECM (Onbase) to manage documents. In your module for printing (dot net), need to add a foot with the data of the user requesting the printing. When the user name has accent is being replaced by special characters.
For example: Araújão - Araoejªo
String waterMark = "Araújão";
FormattedText formatText = new FormattedText(waterMark, System.Drawing.Color.FromArgb(180, 0, 0), Aspose.Pdf.Kit.FontStyle.TimesItalic,
EncodingType.Winansi, false, 12);
formatText.AddNewLineText(date.ToShortDateString().ToString() + " - " + date.ToShortTimeString().ToString());
PdfFileStamp stamper = new PdfFileStamp(inFile, outFile);
stamper.AddFooter(formatText, 0);
stamper.Close();
Sorry an error of writing because this isn´t my native language. I am Brazilian.
Thank´s.