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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.
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.
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.
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.
With this version, you can build high-performance Word document conversion apps and create high-quality WebP images from your MS Word files.
Define a custom delimiter for greater control over conversion output as this functionality is now supported in GroupDocs.Conversion for .NET.
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);
}
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);
}
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.