Last active
April 1, 2023 02:29
Revisions
-
aspose-com-kb revised this gist
Apr 1, 2023 . No changes.There are no files selected for viewing
-
aspose-com-kb created this gist
Mar 30, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ 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"); } } }