Last active
April 1, 2023 02:29
How to Convert EPS to PDF File in C#. For further details: https://kb.aspose.com/pdf/net/how-to-convert-eps-to-pdf-in-csharp/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Aspose.Pdf; | |
namespace AsposeProjects | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Initialize license | |
License lic = new License(); | |
lic.SetLicense("Aspose.Total.lic"); | |
// Initialize PsLoadOptions class object | |
Aspose.Pdf.PsLoadOptions options = new Aspose.Pdf.PsLoadOptions(); | |
// Create Document class object | |
Aspose.Pdf.Document document = new Aspose.Pdf.Document("input.eps", options); | |
// Convert EPS to PDF | |
document.Save("EPStoPDF.pdf"); | |
System.Console.WriteLine("Done"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment