GroupDocs.Conversion
23.12.0
Prefix Reserved
See the version list below for details.
dotnet add package GroupDocs.Conversion --version 23.12.0
NuGet\Install-Package GroupDocs.Conversion -Version 23.12.0
<PackageReference Include="GroupDocs.Conversion" Version="23.12.0" />
<PackageVersion Include="GroupDocs.Conversion" Version="23.12.0" />
<PackageReference Include="GroupDocs.Conversion" />
paket add GroupDocs.Conversion --version 23.12.0
#r "nuget: GroupDocs.Conversion, 23.12.0"
#:package GroupDocs.Conversion@23.12.0
#addin nuget:?package=GroupDocs.Conversion&version=23.12.0
#tool nuget:?package=GroupDocs.Conversion&version=23.12.0
.NET API for Document Conversion
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
This .NET API can seamlessly integrate and enables your C#, ASP.NET & other .NET apps to convert document formats, without installing any 3rd party tools.
Document Conversion Processing Features
- Provide a source format and fetch its supported conversion formats.
- Generate fixed positioned DOM elements or flow positioned DOM elements for HTML conversion.
- Apply a watermark to the converted document.
- Supports various types of watermarks.
- Supports conversion of N consecutive pages.
- Convert the format of specific pages based on the page number.
- Convert to HTML format with absolutely positioned HTML elements.
- Supports conversion with advanced configurable options.
- Cache conversion results to local drive or use extension point to customize it.
- Load document from Amazon S3, Azure Blob, FTP, or from local disk.
- Load document via stream or from a specific URL.
- Load password-protected documents.
- Enable listening of conversion process stages.
Supported Conversion File Formats
GroupDocs.Conversion allows you to convert any of the following types of file formats:
Spreadsheet: XLSX, XLSB, XLS2003, XLT, XLTX, XLTM, XLAM, ODS, TSV, CSV, XLS, XLSM
Document: DOC, DOCM, DOCX, DOT, DOTM, DOTX, RTF, TXT, ODT, OTT
Presentation: PPT, PPS, PPTX, PPSX, ODP, POT, POTX, POTM, PPTM, PPSM
Image: JPC, JPEG-LS, TIFF, TIF, JPEG, JPG, PNG, GIF, BMP, ICO, CMX, DIB
Portable Document: PDF, XPS, EPUB
Web: HTM, HTML, MHTML
Adobe Photoshop: PSD
Microsoft Project: MPT, MPP, MPX
Email: MSG, EML, EMLX
Microsoft Visio: VSD, VSDX, VSS, VST, VSX, VTX, VDW, VDX, SVG, VSDM, VSSM, VSTM
AutoCAD: DXF, DWG, DWF, STL, IFC, DWT
Page Description: EPS, PCL, PS, CGM
Supported Platforms
GroupDocs.Conversion for .NET does not require any external software or third-party tool to be installed. GroupDocs.Conversion for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Document Information Retrieval
Word Processing: word count, line count, page count, author, creation date.
Spreadsheet: worksheet count, author, creation date.
Presentation: slide count, author, creation date, presentation format.
Email: attachment count, is HTML body, is encrypted, is signed.
Image: image width, image height, image format.
CAD Drawing: collections of layout and layers.
PDF Document: page count, is landscaped, is encrypted, author, creation date.
Get Started
Are you ready to give GroupDocs.Conversion for .NET a try? Simply execute Install-Package GroupDocs.Conversion from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Conversion assembly in your project. If you already have GroupDocs.Conversion for .Net and want to upgrade it, please execute Update-Package GroupDocs.Conversion to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Convert Specific Pages of DOCX to PDF via C# Code
using(Converter converter = new Converter("sample.docx")) {
PdfConvertOptions options = new PdfConvertOptions {
Pages = new List < int > {
1,
3
}
};
converter.Convert("converted.pdf", options);
}
Fetch all Possible Conversion Formats supported by GroupDocs.Conversion
var allPossibleConversions = Converter.GetAllPossibleConversions();
foreach(var possibleConversions in allPossibleConversions) {
Console.WriteLine($ "Source format: {possibleConversions.Source.Description}");
foreach(var primary in possibleConversions.Primary) {
Console.WriteLine($ "\t...can be converted to {primary.Description}");
}
foreach(var secondary in possibleConversions.Secondary) {
Console.WriteLine($ "\t...can be converted to {secondary.Description}");
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- System.Diagnostics.DiagnosticSource (>= 7.0.0)
- System.Drawing.Common (>= 4.5.0)
- System.Reflection.MetadataLoadContext (>= 7.0.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 7.0.0)
- System.Text.Json (>= 6.0.0)
-
.NETStandard 2.1
- Aspose.Drawing.Common (>= 23.7.0)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Newtonsoft.Json (>= 13.0.1)
- SkiaSharp (>= 2.88.6)
- SkiaSharp.NativeAssets.Linux.NoDependencies (>= 2.88.6)
- System.Diagnostics.DiagnosticSource (>= 6.0.0)
- System.Drawing.Common (>= 6.0.0)
- System.Reflection.MetadataLoadContext (>= 7.0.0)
- System.Security.Cryptography.Pkcs (>= 7.0.3)
- System.Security.Permissions (>= 6.0.0)
- System.Text.Encoding.CodePages (>= 7.0.0)
- System.Text.Json (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.0 | 302 | 1/30/2026 |
| 25.12.0 | 2,017 | 12/20/2025 |
| 25.11.0 | 598 | 11/28/2025 |
| 25.10.0 | 12,089 | 11/7/2025 |
| 25.9.0 | 7,174 | 9/30/2025 |
| 25.8.0 | 4,263 | 8/31/2025 |
| 25.7.0 | 888 | 7/31/2025 |
| 25.6.0 | 1,435 | 6/30/2025 |
| 25.5.1 | 978 | 6/10/2025 |
| 25.5.0 | 446 | 5/30/2025 |
| 25.4.0 | 2,568 | 4/30/2025 |
| 25.3.0 | 5,474 | 3/28/2025 |
| 25.2.1 | 6,578 | 3/4/2025 |
| 25.2.0 | 1,554 | 2/27/2025 |
| 25.1.0 | 7,135 | 1/30/2025 |
| 24.12.0 | 24,996 | 12/20/2024 |
| 24.11.0 | 9,415 | 11/29/2024 |
| 24.10.0 | 13,850 | 10/31/2024 |
| 24.9.0 | 24,045 | 9/30/2024 |
| 23.12.0 | 40,319 | 12/22/2023 |
