🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

GroupDocs.Conversion.LowCode

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

GroupDocs.Conversion.LowCode

This is a cross-platform version of GroupDocs.Conversion for .NET. GroupDocs.Conversion for .NET is a powerful and intuitive library used for documents conversion. Convert DOC to PDF, PDF to DOC, XLS to DOC, PPT to PDF and any other popular file formats with simple, intuitive and flexible API. For more details on the GroupDocs.Conversion for .NET API, please visit product website at: https://products.groupdocs.com/conversion/net Note: The library will run in evaluation mode. In order to test full features of the product, please request a free 30-day temporary license.

25.5.1
NuGet
Version published
Maintainers
1
Created
Source

GroupDocs.Conversion.LowCode for .NET

NuGet NuGet Downloads

GroupDocs.Conversion.LowCode is a lightweight .NET API for fast, easy, and reliable document conversion. It provides simple, strongly-typed converter classes for popular formats, allowing you to convert documents with minimal code and no external dependencies.

Features

  • Convert between PDF, Word, Excel, PowerPoint, HTML, and more.
  • Simple, dedicated converter classes for each format.
  • No need for Microsoft Office or other third-party software.
  • Works on Windows, Linux, and macOS.

Supported Platforms

  • .NET 6.0+
  • .NET Core 3.1+
  • .NET Framework 4.7.2+
  • Windows, Linux, macOS

Quick Start

You can install the package using your preferred method via NuGet. Search for GroupDocs.Conversion.LowCode in your IDE's NuGet Package Manager, or use the .NET CLI or Package Manager Console to add it to your project.

Usage Examples

Below are examples for each converter class in the GroupDocs.Conversion.LowCode namespace.

PDF to DOCX

var converter = new PdfToDocxConverter("contract.pdf");
converter.Convert("contract-editable.docx");

PDF to Markdown

var converter = new PdfToMdConverter("meeting-notes.pdf");
converter.Convert("meeting-notes.md");

PDF to PDF/A

var converter = new PdfToPdfAConverter("invoice.pdf");
converter.Convert("invoice-archival.pdf");

DOC to PDF

var converter = new DocToPdfConverter("proposal.doc");
converter.Convert("proposal.pdf");

DOCX to PDF

var converter = new DocxToPdfConverter("report.docx");
converter.Convert("report.pdf");

XLS to PDF

var converter = new XlsToPdfConverter("financials-2023.xls");
converter.Convert("financials-2023.pdf");

XLSX to PDF

var converter = new XlsxToPdfConverter("budget.xlsx");
converter.Convert("budget-summary.pdf");

PPT to PDF

var converter = new PptToPdfConverter("company-overview.ppt");
converter.Convert("company-overview.pdf");

PPTX to PDF

var converter = new PptxToPdfConverter("sales-pitch.pptx");
converter.Convert("sales-pitch.pdf");

HTML to PDF

var converter = new HtmlToPdfConverter("invoice-template.html");
converter.Convert("invoice-template.pdf");

Advanced Options

All converters support additional options via a lambda:

converter.Convert("output.pdf", options => {
    options.PageNumber = 2;
    options.PagesCount = 5;
});

Support

  • Documentation
  • API Reference
  • Examples
  • Free Support Forum

For licensing, visit Temporary License.

Keywords

GroupDocs.Conversion

FAQs

Package last updated on 10 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts