Skip to content

Instantly share code, notes, and snippets.

@aspose-com-kb
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/
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