Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Conversion for .NET 23.2

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 249.97MB
  • Date Added:
  • 28/2/2023

Description

This contains the MSI installer of GroupDocs.Conversion for .NET

File Details

Support for Conversion to MOBI Format

GroupDocs.Conversion for .NET API now supports converting any of the supported file types to the MOBI eBook file format, such as:

  • PDF to MOBI
  • Word® to MOBI
  • Excel® to MOBI
  • PowerPoint® to MOBI
  • Image to MOBI
  • AZW3 to MOBI
  • EPUB to MOBI

Convert PDF to MOBI via eBook Converter* API

This following C# code example demonstrates how to use the GroupDocs.Conversion for .NET API to convert a PDF file to MOBI format in C# and .NET applications:

// Load the source PDF file
using (Converter converter = new Converter("sample.pdf"))
{
    // Set the convert options for MOBI format
    var options = new EBookConvertOptions {
        Format = EBookFileType.Mobi
    };
    // Convert to MOBI format
    converter.Convert("converted.mobi", options);
}

*source

Export Specific Worksheets to Desired Format

When converting spreadsheets, C# .NET App developers can now specify the desired sheets by their zero-based index numbers. This makes it easy to convert only the specific worksheets that are needed.

The followiong C# code snippet demonstrates how to use the GroupDocs.Conversion for .NET API to convert specific worksheets from a spreadsheet (XLSX) file to PDF format in C# and .NET applications:

Contracts.Func<LoadOptions> getLoadOptions = () => new SpreadsheetLoadOptions
{
    SheetIndexes = new[] { 0, 2 },
    OnePagePerSheet = true
};
using (Converter converter = new Converter("sample.xlsx", getLoadOptions))
{
    PdfConvertOptions options = new PdfConvertOptions();
    converter.Convert("converted.pdf", options);
}

*source

For a complete list of features, enhancements, and bug fixes in this release please visit, GroupDocs.Conversion for .NET 23.2.

 English