GroupDocs.Conversion 24.3.0

dotnet add package GroupDocs.Conversion --version 24.3.0
NuGet\Install-Package GroupDocs.Conversion -Version 24.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Conversion" Version="24.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Conversion --version 24.3.0
#r "nuget: GroupDocs.Conversion, 24.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GroupDocs.Conversion as a Cake Addin
#addin nuget:?package=GroupDocs.Conversion&version=24.3.0

// Install GroupDocs.Conversion as a Cake Tool
#tool nuget:?package=GroupDocs.Conversion&version=24.3.0

.NET API for Document Conversion

Version 24.3.0 Nuget

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License

GroupDocs.Conversion is a class-library that enables you to build seamless document conversion applications for mobile, web, and desktop platforms using C#, F#, or VB.NET. It supports more than 10 000 combinations for converting popular file formats in HTML, PNG, JPEG, and PDF. Our library is self-sufficient and doesn't depend on any third-party software, such as Microsoft Word, OpenOffice, or other office suites.

Features

See the Features overview documentation topic for more details.

Supported platforms

  • Windows: Microsoft Windows XP and later, Microsoft Windows Server 2003 and later.
  • Linux: Ubuntu, OpenSUSE, CentOS and others.
  • Mac OS X Catalina (10.15) and later.

If you build applications for Linux and macOS, we recommend using GroupDocs.Conversion.CrossPlatform package instead of this one. GroupDocs.Conversion.CrossPlatform does not use on System.Drawing.Common as a graphical subsystem, which is only supported on Windows.

See the System requirements documentation topic for more details.

Supported formats

  • Documents: PDF, XPS, TEX
  • Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT
  • Powepoint: PPT, PPTX, PPS, PPSX, ODP, OTP
  • Excel: XLS, XLSX, XLSM, XLSB, XLTM, XLTX, XLT, XLAM
  • Visio: VSDX, VSDM, VSSX, VSTX, VSTM, VSSM, VSX, VTX, VDX
  • OpenDocument: ODT, OTT, ODS
  • Images: BMP, JPEG, PNG, GIF, TIFF, SVG, PS
  • Diagram: VSDX, DRAW, LUCIDCHART
  • CAD & GIS: DWG, DXF, DWF, IFC, SHP, KML, GEOJSON
  • Audio: MP3, WAV, FLAC, AAC, OGG
  • Video: MP4, AVI, MKV, MOV, WMV
  • 3D & Vector: SVG, AI, EPS, CDR, STL, OBJ, FBX, DAE, GLB
  • eBook: EPUB, MOBI, AZW, FB2
  • Web: HTML, MHTML, MHT
  • Archives: ZIP, TAR, RAR, 7Z, BZ2, GZ
  • Email & Outlook: PST, OST, MSG, EML
  • Finance: QFX, OFX
  • OneNote: ONE

See the Supported file formats documentation topic for a complete list of supported formats.

Getting Started

To get started with GroupDocs.Conversion first you have to install the package using the command for your tool that you can find at the beginning of this page.

You can run the following code snippets in C# to see how our library works. Also feel free to check out the GitHub Repository for other common use cases.

Convert PDF to DOCX

// Load the source PDF file
using (var converter = new Converter("resume.pdf"))
{
    // Set the convert options
    var convertOptions = new WordProcessingConvertOptions();
    
    // Convert PDF to DOCX        
    converter.Convert("resume.docx", convertOptions);
}

Convert PDF to PNG

using GroupDocs.Conversion;
using GroupDocs.Conversion.FileTypes;
using GroupDocs.Conversion.Options.Convert;

// Load the source PDF file
using (var converter = new Converter("resume.pdf"))
{
  var getPageStream = (int page) => File.Create($"resume-page-{page}.png");

    // Set the convert options and specify the output image type
    var convertOptions = new ImageConvertOptions { 
      Format = ImageFileType.Png
    };          
    
    // Convert each page of PDF document to PNG
    converter.Convert(getPageStream, convertOptions);
}

Convert DOCX (pages 2-4) to PDF

using GroupDocs.Conversion;
using GroupDocs.Conversion.Options.Convert;

// Load the source DOCX file  
using (Converter converter = new Converter("booklet.docx"))
{
    // Set the options and specify the range of pages to convert       
    var convertOptions = new PdfConvertOptions 
    { 
      PageNumber = 2, 
      PagesCount = 3 
    };
    
    // Convert pages 2-4 to PDF       
    converter.Convert("pages-2-4.pdf", convertOptions);
}

Convert DOCX to PDF using fluent syntax

using GroupDocs.Conversion;

FluentConverter
    .Load("schedule.docx")
    .ConvertTo("schedule.pdf")
    .Convert();

Support

Our technical support is available to all users, including those evaluating our product. We offer assistance through our Free Support Forum and Paid Support Helpdesk. Let us know if you have any questions or issues, and we'll do our best to help you.

Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License

Product 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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
24.3.0 13,302 3/28/2024
24.2.0 13,039 2/29/2024
24.1.0 14,314 1/31/2024
23.12.0 16,151 12/22/2023
23.11.0 13,228 11/30/2023
23.10.0 16,686 10/31/2023
23.9.0 21,826 9/30/2023
23.8.0 23,140 8/31/2023
23.7.0 27,040 7/31/2023
23.6.0 51,578 6/20/2023
23.5.0 13,204 5/31/2023
23.4.0 23,291 4/28/2023
23.3.1 32,375 4/3/2023
23.3.0 12,525 3/30/2023
23.2.0 35,321 2/28/2023
23.1.0 88,048 1/31/2023
22.12.0 33,730 12/20/2022
22.11.0 12,635 11/30/2022
22.10.0 21,421 10/31/2022
22.9.0 23,785 9/30/2022
22.8.0 24,448 8/31/2022
22.7.0 62,819 7/31/2022
22.6.0 44,168 6/28/2022
22.5.0 22,377 5/31/2022
22.4.0 45,991 4/21/2022
22.2.0 48,952 3/1/2022
22.1.0 27,182 1/29/2022
21.11.0 24,080 11/30/2021
21.10.0 27,563 10/31/2021
21.9.1 23,509 10/6/2021
21.9.0 14,165 10/1/2021
21.8.0 18,226 8/3/2021
21.5.0 29,358 5/29/2021
21.3.1 32,797 4/12/2021
21.3.0 27,378 3/30/2021
21.2.0 31,610 2/28/2021
21.1.0 29,693 1/31/2021
20.12.0 54,260 12/21/2020
20.11.0 32,636 11/11/2020
20.10.0 26,121 10/14/2020
20.9.0 16,627 9/30/2020
20.8.0 21,809 8/31/2020
20.7.0 21,957 7/31/2020
20.6.0 76,799 6/9/2020
20.4.0 32,558 4/30/2020
20.3.0 42,821 3/19/2020
20.1.0 37,503 1/29/2020
19.12.1 31,367 1/2/2020
19.12.0 6,312 12/30/2019
19.11.0 29,356 11/30/2019
19.10.0 7,408 10/31/2019
19.9.0 10,631 9/23/2019
19.6.0 7,424 6/27/2019
19.5.0 4,742 5/28/2019
19.4.0 5,396 4/30/2019
19.3.0 4,530 3/6/2019
19.1.0 4,694 1/30/2019
18.11.0 4,704 11/30/2018
18.10.0 6,449 10/16/2018
18.9.0 4,833 9/30/2018
18.8.0 5,619 8/14/2018
18.7.0 4,836 7/9/2018
18.6.0 4,756 6/19/2018
18.5.0 4,808 5/23/2018
18.4.0 4,761 4/20/2018
18.3.0 4,098 3/21/2018
18.2.0 4,417 2/16/2018
18.1.0 4,665 1/23/2018
17.12.0 4,389 12/13/2017
17.11.0 4,328 11/19/2017
17.10.0 4,670 10/26/2017
17.9.0 4,624 9/20/2017