I am try to use Chinese to sign a PDF document, but can't display chinese detail.
how can I do? thanks.
======================================
FormEditor editor = new FormEditor();
editor.BindPdf(inFile);
editor.AddField(FieldType.Signature, "Signature", 1, 10, 10, 110, 110);
editor.Save(outFile);
editor.BindPdf(inFile);
editor.AddField(FieldType.Signature, "Signature", 1, 10, 10, 110, 110);
editor.Save(outFile);
//add signature to any of the signature fields
PdfFileSignature pdfSign = new PdfFileSignature();
pdfSign.BindPdf(outFile);
pdfSign.Sign("Signature", "許可", "作者", "地點", signature1);
PdfFileSignature pdfSign = new PdfFileSignature();
pdfSign.BindPdf(outFile);
pdfSign.Sign("Signature", "許可", "作者", "地點", signature1);