I am using the PdfFileMend object within aspose.pdf.kit to add text to existing PDF : paraphrasing the code I have something like :
ft = New FormattedText("Testing £1234 - £23.45", Black,Aspose.Pdf.Kit.FontStyle.Helvetica, EncodingType.Winansi, False, 18)
' Mendor is a valid 'PdfFileMend' object
Mendor.AddText(ftext, 1,100,100)
I am printing quite a lot of text in the document and most of it is just fine. The problem being that the £ sign prints over the following character and the dash "-" doesn't print at all :(
Any ideas how this can be rectified ?
Regards Tony Smith