Skip to content

Instantly share code, notes, and snippets.

View groupdocs-com-kb's full-sized avatar

groupdocs-com-kb

View GitHub Profile
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertPdfToWordInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert PDF to Word using C#
{
// Remove the watermark in output Word document by adding license
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertImageToPdfInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert Image to PDF using C#
{
// Remove the watermark in output PDF document by adding license
@groupdocs-com-kb
groupdocs-com-kb / How to Convert Excel to PDF in C#.cs
Last active March 11, 2022 12:08
How to Convert Excel to PDF in C#. For more information, please follow link: https://kb.groupdocs.com/conversion/net/how-to-convert-excel-to-pdf-in-csharp/
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertExcelToPdfInCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert Excel to PDF using C#
{
// Remove the watermark in output PDF document by adding license
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
public class ConvertExcelToPdfUsingJava {
public static void main( String[] args ) { // Main function to convert Excel to PDF using Java
// Remove the watermark in output PDF document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert PDF to Word in Java.java
Last active March 18, 2022 17:06
How to Convert PDF to Word in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-pdf-to-word-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.WordProcessingConvertOptions;
public class ConvertPdfToWordInJava {
public static void main(String[] args) { // Main function to convert PDF to Word in Java
// Remove the watermark in output Word document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert PDF to Image in Java.java
Last active March 18, 2022 17:07
How to Convert PDF to Image in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-pdf-to-image-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.ImageConvertOptions;
public class ConvertPdfToImageInJava {
public static void main(String[] args) { // Main function to convert PDF to Image in Java
// Remove the watermark in output Image document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert PDF to HTML in Java.java
Last active March 25, 2022 11:07
How to Convert PDF to HTML in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-pdf-to-html-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.MarkupConvertOptions;
public class ConvertPdfToHtmlInJava {
public static void main(String[] args) { // Main function to convert PDF to HTML in Java
// Remove the watermark in output HTML file by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
@groupdocs-com-kb
groupdocs-com-kb / How to Convert HTML to PDF in Java.java
Last active March 25, 2022 11:08
How to Convert HTML to PDF in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-html-to-pdf-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
public class ConvertHtmlToPdfInJava {
public static void main(String[] args) { // Main function to convert HTML to PDF in Java
// Remove the watermark in output Text document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertWordDocumentToHtmlUsingCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert Word Document to HTML using C#
{
// Remove the watermark in output HTML file by adding license
using System;
using GroupDocs.Conversion.Options.Convert;
namespace ConvertPdfToHtmlUsingCSharp
{
class Program
{
public static void Main(string[] args) // Main function to convert PDF to HTML using C#
{
// Remove the watermark in output HTML document by adding license