Unable to convert PS(if generated by some printer) to pdf

i am facing the the same issue ‘Unsupported maximum profile version.’ i am using .net 6.0 and latest version of aspose.pages to convert a ps file to pdf file.
that is the code
class RunExamples
{
public static string GetDataDir_WorkingWithDocumentConversion()
{
// Update this path to your actual data directory path
return @"E:";
}
}

class Program
{
static void Main(string[] args)
{
// The path to the documents directory
string dataDir = RunExamples.GetDataDir_WorkingWithDocumentConversion();

     // Initialize PsDocument with the name of PostScript file
     PsDocument document = new PsDocument(dataDir + "input.ps");

     // If you want to convert PostScript file despite minor errors set this flag
     bool suppressErrors = true;

     // Initialize options object with necessary parameters
     PdfSaveOptions options = new PdfSaveOptions(suppressErrors);

     // If you want to add special folder where fonts are stored
     // Default fonts folder in OS is always included
     options.AdditionalFontsFolders = new string[] { @"C:\path\to\your\fonts\" };

     // Default page size is 595x842 and it is not mandatory to set it in PdfSaveOptions
     // But if you need to specify size use the following line
     options.Size = new Aspose.Page.Drawing.Size(595, 842);

     // Save the document as PDF
     document.SaveAsPdf(dataDir + "outputPDF_out.pdf", options);

     // Review errors
     if (suppressErrors)
     {
         foreach (PsConverterException ex in options.Exceptions)
         {
             Console.WriteLine(ex.Message);
         }
     }
 }

}
please help and guide

Continuing the discussion from Unsupported maximum profile version:

Could you please provide more information about the specific printer you are using and the Aspose product you are working with? This will help us provide a more accurate answer.

PrinterPlusPlusSetup_x64.zip (1.3 MB)

this is printer i am using to convert any file to ps
when i am trying to convert those ps to pdf
some time pdf generated but the entire pdf is blank, some time get error.

@govindsingh1

Instead of sharing the printer setup, please share those PS file(s) with us in .zip format which you are not able to convert into PDF. We will test the scenario in our environment and address it accordingly.

SCHOOLFRONT_NTZ-CPU-131_govind.singh_20240805_112809_21.zip (37.2 KB)

this is the file please check

@govindsingh1

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PAGENET-700

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

hi any update regarding the above issue?

@govindsingh1

We are afraid that no progress is made yet in this regard. The ticket was logged recently in our issue management system and it will be prioritized on a first come first serve basis. We will let you know once we have some updates about its resolution. Please spare us some time.

We are sorry for the inconvenience.