How to Convert ODG to PDF using C#

In this how-to guide, we will focus on the step-by-step process to convert ODG to PDF using C# by consuming a few simple API calls of one of the best document conversion libraries. This post will provide information on how to configure the environment for developing the C# ODG to PDF file converter application. Here is the complete workflow and a sample code snippet for converting the ODG file to PDF in C#.

Steps to Convert ODG to PDF using C#

  1. Install GroupDocs.Conversion for .NET package from the NuGet package manager in the .NET application to convert ODG to PDF
  2. Add a reference to the GroupDocs.Conversion namespace for developing the ODG to PDF conversion
  3. Create an instance of the Converter class for loading the input ODG file from the disk for transforming to PDF format
  4. Create and define properties for the PDF document to customize it
  5. Finally, call the Convert method of the Converter class to save ODG as PDF on the disk

We have outlined the workflow to convert ODG file to PDF using C#. This workflow is very easy to follow for the transformation of documents by following these steps in order. You need to instantiate the conversion procedure by setting up the document conversion package from the NuGet website and then including the essential namespaces in the code. The next step helps you to load the input file for converting to the non-editable format using the constructor of the Converter class and after that, you have to create the object of PdfConvertOptions class for customizing the resultant file. Finally, the last step enables you to store the converted file on the disk.

Code to Convert ODG to PDF using C#

using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertOdgToPdfUsingCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert ODG to PDF using C#
{
// Remove the watermark in output PDF document by adding license
string licensePath = "GroupDocs.Conversion.lic";
GroupDocs.Conversion.License lic = new GroupDocs.Conversion.License();
lic.SetLicense(licensePath);
// Load the source ODG file for conversion to PDF
var converter = new GroupDocs.Conversion.Converter("sample.odg");
// Set the conversion options for PDF document to customize the output file
PdfConvertOptions options = new PdfConvertOptions();
// Convert and save the ODG in PDF format
converter.Convert("converted.pdf", options);
Console.WriteLine("Done");
}
}
}

In the preceding code snippet, we have implemented the functionality to change ODG to PDF in C# to show you the working of the feature with the help of the stepwise instructions provided in the earlier section. This sample code is developed by writing a few lines of code and consuming a couple of API calls of the document conversion package. Additionally, this workflow can be used on any of the common operating systems including Windows, macOS, and Linux that support a .NET environment without installing any other third-party tool.

We have discussed the document conversion procedure to convert ODG to PDF in C# and developed an example for it. Recently, we published an article to change Bitmap to PNG in C#, have a look at how to convert Bitmap to PNG using C# guide for more information.

 English