Converting ps file to Pdf adds additional pages

I have used below code to convert ps file to pdf file.
string dataDir = @“C:\repos\TestPSPrint\TestPSPrintSoln\ConsoleApp1\TestFiles”;
string inFile = dataDir + “A.ps”;
string outFile = dataDir + “A.pdf”;

            Document doc = new Document(inFile, new PsLoadOptions() { FontsFolders = new[] { "C:\\Windows\\Fonts" } });

            doc.Save(outFile);

It creates A.pdf. But I noticed it created page with text “--- Demonstration Page - Powered By OpenText Extream, Version 16.4.5. 64 bit -*-” .Also, it adds this text on every page

I have license of aspose.pdf for V 23.7.0.0.

Can anyone help me with this?ps to PDF file issue.PNG (3.5 KB)

@mandar.karnik
Please attach the A.ps file you are writing about so that I can check and reproduce issue.
Beforehand, I can suggest trying to clear the text line on each page (after conversion) using the code.

foreach (Page page in doc.Pages)
{
    page.Artifacts.DeleteByRectangle(new Rectangle(0, 0, 300, 50));
}