Unisci file PostScript in PDF utilizzando .NET

Puoi verificare la qualità di Aspose.Page PS Merger e visualizzare i risultati tramite il servizio online gratuito PostScript Merger

Aspose.Page per .NET PS Merger consente di unire file PostScript (PS) a documenti PDF utilizzando qualsiasi linguaggio supportato dalla piattaforma .NET: C#, VB, J#.
Per eseguire l’unione PS è necessario eseguire diversi passaggi:

  1. Creare un’istanza di PsDocument dal primo file PostScript.
  2. Creare un array di file PS che verrà unito al primo. 3. Utilizzare PdfSaveOptions per specificare i valori booleani AdditionalFontsFolder e SuppressError.
  3. Unire i file PS al documento creato e salvarlo in formato PDF con le opzioni di salvataggio PDF.
  4. Se il valore SuppressErrors è impostato su true, come predefinito, è possibile visualizzare gli errori generati durante l’unione dei file PostScript in un documento PDF e salvati nell’elenco Eccezioni.


Il seguente frammento di codice mostra come unire i file PS in un documento PDF in C#:

 1/ For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-.NET
 2// The path to the documents directory.
 3string dataDir = RunExamples.GetDataDir_WorkingWithDocumentMerging();
 4// Initialize PS document with the first PostScript file
 5PsDocument document = new PsDocument(dataDir + "input1.ps");
 6
 7// Create an array of PostScript files that will be merged with the first one
 8string[] filesForMerge = new string[] { dataDir + "input2.ps", dataDir + "input3.ps" };
 9
10// If you want to convert Postscript file despite of minor errors set this flag
11bool suppressErrors = true;
12
13//Initialize options object with necessary parameters.
14PdfSaveOptions options = new PdfSaveOptions(suppressErrors);
15// If you want to add special folder where fonts are stored. Default fonts folder in OS is always included.
16options.AdditionalFontsFolders = new string[] { @"{FONT_FOLDER}" };
17
18// Default page size is 595x842 and it is not mandatory to set it in SaveOptions
19// But if you need to specify the page size following line
20//PdfSaveOptions options = new PdfSaveOptions(suppressErrors, new Aspose.Page.Drawing.Size(595, 842));
21
22document.MergeToPdf(dataDir + "outputPDF_out.pdf", filesForMerge, options);
23
24//Review errors
25if (suppressErrors)
26{
27    foreach (Exception ex in options.Exceptions)
28    {
29        Console.WriteLine(ex.Message);
30    }
31}

Vedi Unione PS in Java e C++.

Consideriamo PdfSaveOptions. Utilizzando questa classe possiamo assegnare diversi parametri di conversione durante l’unione di file PS in PDF.

Valuta l’unione di PS online sul nostro Unione PS.

Puoi scaricare esempi e file di dati da GitHub.

Have any questions about Aspose.Page?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.