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.