I was testing out version 3.9.0 when I found that entering text into a specific location on a pdf no longer works correctly.
Here is the code.
Dim oPDFMender As New Aspose.Pdf.Kit.PdfFileMend(sDocumentPath, sTempPath)
Dim sDate As String = Today.Month.ToString & "/" & Today.Day.ToString & "/" & Today.Year.ToString.Substring(2, 2)
oPDFMender.AddText(New Aspose.Pdf.Kit.FormattedText(sDate, System.Drawing.Color.Black, Aspose.Pdf.Kit.FontStyle.HelveticaBold, Aspose.Pdf.Kit.EncodingType.Winansi, True, _FontSize), nPage, nDateX, nDateY, nDateX + DateRectangleWidth, nDateY + DateRectangleHeight)
oPDFMender.Close()
If you run this code with any x and y you will notice that it is putting the text in correctly using version 3.7.0.0 but if you then try it with 3.9.0 the text is always lower than it is supposed to be.
Thanks,