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)