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 24.4 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 403.69MB
  • Date Added:
  • 30/4/2024

Description

This ZIP file contains only the GroupDocs.Conversion for .NET 24.4 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Conversion for .NET without the MSI installer. This ZIP download does not contain the demo projects

File Details

The DLLs-only package of GroupDocs.Conversion for .NET 24.4 brings several new features, enhancements, and critical bug fixes to better manage document conversion workflows on Windows, Linux, and macOS.

Target Framework Modernization

Developers can boost their C# document conversion apps with this .NET API version and leverage the benefits of .NET 6.0 for a well-rounded development experience on any platform.

Better Control of PDF Documents

Easily add page numbers in the converted PDFs when converting various file formats within your C# and VB.NET apps using this release of GroupDocs.Conversion for .NET.

Support for Zstandard Archives

The .NET document conversion API now includes support for Zstandard (Zstd) archives. Users can seamlessly handle “.Zstd” format in their .NET solutions running on Windows, Linux, or macOS.

Enhanced Word-processing to WebP Conversion

With this version, you can build high-performance Word document conversion apps and create high-quality WebP images from your MS Word files.

Cutomized Delimited Conversions

Define a custom delimiter for greater control over conversion output as this functionality is now supported in GroupDocs.Conversion for .NET.

Empowered Web Conversions

Enjoy enriched conversion quality while processing HTML source documents and converting them to other formats. The following code example demonstrates how to convert HTML to DOCX in C# using the newly added ConfigureHeaders and CredentialsProvider properties of the WebLoadOptions class.


const string source = "index.html";

using (var converter = new Converter(source, () => new WebLoadOptions
   {
       CredentialsProvider = (uri) =>
       {

           return new NetworkCredential("user", "password");
       },
       ConfigureHeaders = (uri, headers) =>
       {
           headers.Add("x-api-key", "111-222-333");
       }
   }))
{
  var options = new WordProcessingConvertOptions
  {
      Format = WordProcessingFileType.Docx
  };
  converter.Convert("converted.docx", options);
}

Source*

Effortlessly Convert XLSX to CSV in .NET Apps

A new Separator property has been added in the SpreadsheetConvertOptions class in version 24.4 of the C# document conversion API. This code example highlights the property usage:


const string source = "sample.xlsx";

using (var converter = new Converter(source))
{
  var options = new SpreadsheetConvertOptions
  {
      Format = SpreadsheetFileType.Csv,
      Separator = '|'
  };
  converter.Convert("converted.csv", options);
}

Source*

Fixed Bugs

  • Border rendering within converted RTF files (CONVERSIONNET-6790, CONVERSIONNET-6788)
  • HTML to DOCX formatting preservation (CONVERSIONNET-6660)
  • Container document file type detection (CONVERSIONNET-6806)
  • TIFF to PDF conversion scaling (CONVERSIONNET-6408)
  • DWG to PDF conversion accuracy (CONVERSIONNET-5243)
  • Font path configuration (CONVERSIONNET-4741)
  • Email to PDF handling (CONVERSIONNET-6803)

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Conversion for .NET 24.4 Release Notes.

 English