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.5 allows developers to experience seamless integration and equips them with several new features, enhancements, and bug fixes to elevate their app development workflows on any platform.
Enrich your cross-platform applications with the ability to accurately convert embedded documents within WordProcessing, Presentation, and Spreadsheet formats. The following coding sample showcases how to convert a Word (DOCX) document to PDF format with the newly added ConvertOwner, ConvertOwned, and Depth properties of the WordProcessingLoadOptions class.
const string source = "sample-ole.docx";
using (var converter = new Converter(source, () => new WordProcessingLoadOptions
{
ConvertOwner = true,
ConvertOwned = true,
Depth = 1
}))
{
var convertOptions = new PdfConvertOptions();
converter.Convert("converted.pdf", convertOptions);
}
You can ensure smooth hyphenation for a professional look while converting MS Word documents with the newest C# document conversion API release. Please check out the following code sample to learn about the feature usage.
const string source = "sample.docx";
using (var converter = new Converter(source, () => new WordProcessingLoadOptions
{
HyphenationOptions =
{
AutoHyphenation = true
}
}))
{
var convertOptions = new PdfConvertOptions();
converter.Convert("converted.pdf", convertOptions);
}
GroupDocs.Conversion for .NET 24.5 offers better handling of attachment information when converting EML to PDF on Windows, Linux, or Mac. This C# code sample shows how to convert EML to PDF and manipulate various attachment options.
const string source = "sample-with-attachment.eml";
using (var converter = new Converter(source, (fileType) => new EmailLoadOptions
{
ConvertOwned = false,
DisplayAttachments = false,
DisplaySent = false,
DisplaySubject = false
}))
{
var options = new PdfConvertOptions();
converter.Convert((FileType fileType) => new FileStream($"converted.pdf", FileMode.Create), options);
}
Experience a PDF security boost by removing all JavaScript actions from within the original PDF document in your platform-independent C# and VB.NET solutions.
The latest GroupDocs.Conversion for .NET release delivers better control of font embedding functionality when converting documents to web-friendly file formats. This C# code sample demonstrates converting DOCX to HTML with embedded font resources enabled.
const string source = "sample.docx";
using (var converter = new Converter(source))
{
var convertOptions = new WebConvertOptions
{
FixedLayout = false,
EmbedFontResources = true
};
converter.Convert("converted.html", convertOptions);
}
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Conversion for .NET 24.5 Release Notes.