Aspose page .net not working for .ps file

I am trying to convert ps file to PDF using your aspose page .net web app from following link:

Your product is unable to convert ps files to pdf.

I doubt aspose page actually supports ps files.

I have added few eps files for your testing on google drive. Please look into the issue.

link : ps - Google Drive

@info9599

Can you please provide more details about the error message or issue you are encountering when trying to convert PS files to PDF using Aspose.Page?

After uploading the file a red box appear with no text, nothing happens after that. I have shared the files please try with the shared files.

@info9599

We have used below code in our environment and were not able to notice any issues. Do you plan to use the on-Premise API?

System.IO.FileStream psStream = new System.IO.FileStream(dataDir + "Assignment_10_day_13.ps", System.IO.FileMode.Open, System.IO.FileAccess.Read);
var document = new Aspose.Page.EPS.PsDocument(psStream);

var pdfStream = new MemoryStream();

var options = new Aspose.Page.EPS.Device.PdfSaveOptions()
{
    JpegQualityLevel = 100,
    SupressErrors = true,
};

document.SaveAsPdf(dataDir + "Assignment_10_day_13.pdf", options);

Assignment_10_day_13.pdf (497.0 KB)

const.pdf (5.6 MB)

05_ Redox Reactions.pdf (7.7 MB)

BhuviResume.pdf (391.2 KB)