Asp pdf ( html text on pdf)

I need some text to be printed as html text on a specific location on the pdf. The below code works for normal text. but the html text is not printed on to the location i have specified

Pdf pdfDoc = new Pdf();
Aspose.Pdf.Section sec1 = pdfDoc.Sections.Add();
Aspose.Pdf.Text t1 = new Text("ACTION REQUIRED REPORT");
t1.TextInfo.FontName = "TimesRoman";
t1.TextInfo.FontSize = 16;
t1.PositioningType = PositioningType.PageRelative;
t1.Top = 40;
t1.Left = 335;
sec1.Paragraphs.Add(t1);

Aspose.Pdf.Text t3 = new Text(" REGISTERED BUSINESS NAME Iotap Pvt. Ltd");
t3.IsHtmlTagSupported = true;
t3.TextInfo.FontName = "TimesRoman";
t3.TextInfo.FontSize = 8;
t3.PositioningType = PositioningType.PageRelative;
t3.Top = 480;
t3.Left = 135;
sec1.Paragraphs.Add(t3);

pdfDoc.Save("c:/test.pdf");



Hello Denny,

I’ve tested the scenario and I am able to notice the same problem. We are looking into the details of this problem and will keep you updated with the status of correction. We apologize for your inconvenience.

Hi,

After discussing the issue with development team we have come to the conclusion that it can be solved in about one month or longer because its complexity, but still it’s not a promise. We would try our level best to get you the solution and as soon as we have made some progress, we would be pleased to update you with the status of correction.

Your patience and understanding is greatly appreciated in this regard.

Hi,

Thanks you for considering Aspose.Pdf.

I have fixed this problem, and the solution has been submitted to corresponding developer. Please wait for the hotfix.