Syncfusion.DocIORenderer.Net.Core 30.1.41

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.DocIORenderer.Net.Core --version 30.1.41
                    
NuGet\Install-Package Syncfusion.DocIORenderer.Net.Core -Version 30.1.41
                    
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="Syncfusion.DocIORenderer.Net.Core" Version="30.1.41" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.DocIORenderer.Net.Core" Version="30.1.41" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.DocIORenderer.Net.Core --version 30.1.41
                    
#r "nuget: Syncfusion.DocIORenderer.Net.Core, 30.1.41"
                    
#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.
#:package Syncfusion.DocIORenderer.Net.Core@30.1.41
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.DocIORenderer.Net.Core&version=30.1.41
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.DocIORenderer.Net.Core&version=30.1.41
                    
Install as a Cake Tool

Syncfusion® ASP.NET Core Word to PDF converter library

The Syncfusion® .NET Core Word library (Essential® DocIO) converts a Word document to PDF with just five lines of code and also it does not require Adobe and Microsoft Word application to be installed in the machine. It preserves the original appearance of the Word document in the converted PDF document.

ASP.NET Core Word to PDF Library

Features overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback

Key Features

System Requirements

Getting Started

You can fetch the Syncfusion® .NET Word library NuGet by simply running the command Install-Package Syncfusion.DocIORenderer.Net.Core from the Package Manager Console in Visual Studio.

Try the following code example to convert a Word document into PDF document.

using System.IO;
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
using Syncfusion.DocIORenderer;
using Syncfusion.Pdf;

//Opens the file as Stream.
using (FileStream docStream = new FileStream("Template.docx", FileMode.Open, FileAccess.Read))
{
    //Loads file stream into Word document.
    using (WordDocument wordDocument = new WordDocument(docStream, FormatType.Automatic))
    {
        //Instantiation of DocIORenderer for Word to PDF conversion.
        using (DocIORenderer render = new DocIORenderer())
        {
            //Converts Word document into PDF document.
            using (PdfDocument pdfDocument = render.ConvertToPDF(wordDocument))
            {
                //Saves the PDF file.
                using (MemoryStream outputStream = new MemoryStream())
                {
                    pdfDocument.Save(outputStream);
                }
            }
        }
    }
}

For more information to get started, refer to our Getting Started Documentation page.

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion®

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion® has more than 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1800+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), Flutter, Xamarin and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.


sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

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 is compatible.  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 is compatible.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  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 tizen40 was computed.  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 (8)

Showing the top 5 NuGet packages that depend on Syncfusion.DocIORenderer.Net.Core:

Package Downloads
Bnsights.Core

Package Description

I-Synergy.Framework.Documents.Syncfusion

I-Synergy Framework Documents with Syncfusion

Verify.Syncfusion

Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via Syncfusion.

EQP.DocumentFiller

Libreria per la gestione dei template word e stampa documenti con funzioni di rimpiazzo di specifici tag, conversione word in pdf. La libreria inoltre permette la generazione di tabelle di contenuti dinamiche (indici)

Cyber.FrameworkNet8

Phiên bản CyberPlus phát triển trên nền tảng .Net Maui

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
31.1.21 861 9/22/2025
31.1.20 2,076 9/16/2025
31.1.19 1,981 9/11/2025
31.1.18 1,764 9/10/2025
31.1.17 1,862 9/5/2025
30.2.7 5,721 8/25/2025
30.2.6 8,826 8/18/2025
30.2.5 2,811 8/13/2025
30.2.4 7,746 8/7/2025
30.1.42 11,342 7/28/2025
30.1.41 17,094 7/22/2025
30.1.40 7,051 7/14/2025
30.1.39 7,076 7/8/2025
30.1.38 3,807 7/1/2025
30.1.37 7,255 6/25/2025
29.2.11 12,963 6/16/2025
29.2.10 5,352 6/9/2025
29.2.9 4,005 6/5/2025
29.2.8 2,308 6/3/2025
29.2.7 9,037 5/26/2025
29.2.5 4,415 5/21/2025
29.2.4 14,320 5/14/2025
29.1.41 26,379 5/5/2025
29.1.40 11,439 4/28/2025
29.1.39 20,058 4/21/2025
29.1.38 14,481 4/15/2025
29.1.37 7,300 4/8/2025
29.1.35 24,664 4/1/2025
29.1.33 9,322 3/25/2025
28.2.12 13,438 3/19/2025
28.2.11 25,037 3/11/2025
28.2.9 26,431 3/4/2025
28.2.7 4,462 2/25/2025
28.2.6 14,674 2/17/2025
28.2.5 11,936 2/11/2025
28.2.4 16,341 2/4/2025
28.2.3 19,195 1/29/2025
28.1.41 15,802 1/21/2025
28.1.39 22,049 1/13/2025
28.1.38 5,834 1/7/2025
28.1.37 9,750 12/31/2024
28.1.36 4,307 12/23/2024
28.1.35 16,240 12/18/2024
28.1.33 26,280 12/12/2024
27.2.5 23,597 12/2/2024
27.2.4 19,699 11/26/2024
27.2.3 9,557 11/22/2024
27.2.2 26,755 11/15/2024
27.1.58 24,616 11/4/2024
27.1.57 18,273 10/28/2024
27.1.56 12,403 10/23/2024
27.1.55 2,866 10/21/2024
27.1.53 24,051 10/14/2024
27.1.52 17,948 10/7/2024
27.1.51 23,023 9/30/2024
27.1.50 12,008 9/24/2024
27.1.48 14,236 9/18/2024
26.2.14 33,154 9/9/2024
26.2.13 19,888 9/5/2024
26.2.12 6,969 9/2/2024
26.2.11 15,986 8/27/2024
26.2.10 12,237 8/19/2024
26.2.9 19,205 8/12/2024
26.2.8 7,711 8/5/2024
26.2.7 22,934 7/29/2024
26.2.5 20,222 7/26/2024
26.2.4 10,960 7/24/2024
26.1.42 52,786 7/15/2024
26.1.41 11,228 7/8/2024
26.1.40 7,354 7/1/2024
26.1.39 26,570 6/24/2024
26.1.38 8,693 6/18/2024
26.1.35 25,891 6/11/2024
25.2.7 37,175 6/3/2024
25.2.6 19,548 5/28/2024
25.2.5 21,791 5/21/2024
25.2.4 15,122 5/14/2024
25.2.3 11,882 5/8/2024
25.1.42 20,226 4/29/2024
25.1.41 5,144 4/23/2024
25.1.40 32,762 4/15/2024
25.1.39 18,484 4/8/2024
25.1.38 33,633 4/1/2024
25.1.37 3,396 3/26/2024
25.1.35 37,767 3/15/2024
24.2.9 23,208 3/4/2024
24.2.8 15,364 2/26/2024
24.2.7 24,994 2/19/2024
24.2.6 16,139 2/14/2024
24.2.5 765 2/12/2024
24.2.4 7,704 2/6/2024
24.2.3 13,291 1/31/2024
24.1.47 19,512 1/23/2024
24.1.46 6,476 1/16/2024
24.1.45 15,708 1/9/2024
24.1.44 10,553 1/3/2024
24.1.43 7,800 12/27/2023
24.1.41 51,893 12/18/2023
23.2.7 52,366 12/6/2023
23.2.6 18,440 11/28/2023
23.2.5 3,972 11/23/2023
23.2.4 11,612 11/20/2023
23.1.44 19,523 11/6/2023
23.1.43 7,089 10/30/2023
23.1.42 21,332 10/23/2023
23.1.41 20,546 10/16/2023
23.1.40 26,257 10/10/2023
23.1.39 13,115 10/4/2023
23.1.38 7,086 9/26/2023
23.1.36 77,513 9/15/2023
22.2.12 25,321 9/5/2023
22.2.11 6,360 8/28/2023
22.2.10 8,107 8/22/2023
22.2.9 18,706 8/14/2023
22.2.8 6,136 8/7/2023
22.2.7 5,270 8/2/2023
22.2.5 17,805 7/27/2023
22.1.39 17,759 7/18/2023
22.1.38 7,696 7/11/2023
22.1.37 5,417 7/3/2023
22.1.36 14,117 6/28/2023
22.1.34 21,960 6/21/2023
21.2.10 14,513 6/13/2023
21.2.9 7,556 6/6/2023
21.2.8 15,291 5/30/2023
21.2.6 20,958 5/22/2023
21.2.5 22,060 5/15/2023
21.2.4 11,105 5/9/2023
21.2.3 9,065 5/3/2023
21.1.41 45,502 4/19/2023
21.1.39 21,203 4/10/2023
21.1.38 10,060 4/3/2023
21.1.37 3,903 3/29/2023
21.1.35 15,965 3/23/2023
20.4.0.54 122,731 3/13/2023
20.4.0.53 11,803 3/7/2023
20.4.0.52 12,279 2/28/2023
20.4.0.51 16,099 2/21/2023
20.4.0.50 7,253 2/14/2023
20.4.0.49 11,189 2/7/2023
20.4.0.48 19,944 2/1/2023
20.4.0.44 71,318 1/18/2023
20.4.0.43 24,776 1/10/2023
20.4.0.42 13,585 1/4/2023
20.4.0.41 4,869 12/29/2022
20.4.0.40 953 12/28/2022
20.4.0.38 17,546 12/21/2022
20.3.0.61 11,960 12/13/2022
20.3.0.60 9,380 12/6/2022
20.3.0.59 12,452 11/29/2022
20.3.0.58 4,664 11/22/2022
20.3.0.57 3,032 11/15/2022
20.3.0.56 9,913 11/8/2022
20.3.0.52 19,104 10/27/2022
20.3.0.50 19,697 10/18/2022
20.3.0.49 11,316 10/11/2022
20.3.0.48 46,189 10/5/2022
20.3.0.47 53,700 9/29/2022
20.2.0.50 15,502 9/20/2022
20.2.0.49 6,899 9/13/2022
20.2.0.48 17,368 9/6/2022
20.2.0.46 2,507 8/30/2022
20.2.0.45 12,408 8/23/2022
20.2.0.44 11,366 8/16/2022
20.2.0.43 48,571 8/8/2022
20.2.0.40 15,742 7/26/2022
20.2.0.39 8,225 7/19/2022
20.2.0.38 12,944 7/12/2022
20.2.0.36 35,491 6/30/2022
20.1.0.61 43,191 6/21/2022
20.1.0.60 11,042 6/14/2022
20.1.0.59 23,516 6/7/2022
20.1.0.58 47,296 5/31/2022
20.1.0.57 6,048 5/24/2022
20.1.0.56 10,156 5/17/2022
20.1.0.55 10,877 5/12/2022
20.1.0.52 13,662 5/3/2022
20.1.0.51 12,189 4/26/2022
20.1.0.50 10,387 4/19/2022
20.1.0.48 17,385 4/12/2022
20.1.0.47 23,088 4/4/2022
19.4.0.56 45,941 3/15/2022
19.4.0.55 8,644 3/8/2022
19.4.0.54 7,689 3/1/2022
19.4.0.53 54,426 2/22/2022
19.4.0.52 17,316 2/15/2022
19.4.0.50 13,309 2/8/2022
19.4.0.48 17,834 1/31/2022
19.4.0.47 6,610 1/25/2022
19.4.0.43 5,079 1/18/2022
19.4.0.42 11,531 1/11/2022
19.4.0.41 359,382 1/4/2022
19.4.0.40 11,890 12/28/2021
19.4.0.38 31,544 12/17/2021
19.3.0.59 15,321 12/14/2021
19.3.0.57 9,023 12/7/2021
19.3.0.56 6,911 11/30/2021
19.3.0.55 12,333 11/23/2021
19.3.0.54 4,146 11/17/2021
19.3.0.53 21,562 11/12/2021
19.3.0.48 14,947 11/2/2021
19.3.0.47 19,913 10/26/2021
19.3.0.46 7,256 10/19/2021
19.3.0.45 12,898 10/12/2021
19.3.0.44 3,266 10/5/2021
19.3.0.43 17,278 9/30/2021
19.2.0.62 37,277 9/14/2021
19.2.0.60 6,192 9/7/2021
19.2.0.59 8,660 8/31/2021
19.2.0.57 4,870 8/24/2021
19.2.0.56 7,432 8/17/2021
19.2.0.55 6,843 8/11/2021
19.2.0.51 2,723 8/2/2021
19.2.0.49 3,267 7/27/2021
19.2.0.48 8,333 7/20/2021
19.2.0.47 1,848 7/13/2021
19.2.0.46 4,554 7/6/2021
19.2.0.44 6,727 6/30/2021
19.1.0.69 6,552 6/14/2021
19.1.0.67 64,703 6/8/2021
19.1.0.66 3,361 6/1/2021
19.1.0.65 5,515 5/25/2021
19.1.0.64 3,389 5/19/2021
19.1.0.63 35,376 5/13/2021
19.1.0.59 4,326 5/4/2021
19.1.0.58 5,235 4/27/2021
19.1.0.57 3,261 4/20/2021
19.1.0.56 16,362 4/13/2021
19.1.0.55 2,618 4/6/2021
19.1.0.54 79,662 3/30/2021
18.4.0.49 17,810 3/23/2021
18.4.0.48 7,431 3/16/2021
18.4.0.47 20,664 3/9/2021
18.4.0.46 4,275 3/2/2021
18.4.0.44 6,248 2/23/2021
18.4.0.43 8,672 2/16/2021
18.4.0.42 6,895 2/9/2021
18.4.0.41 15,119 2/2/2021
18.4.0.39 23,546 1/28/2021
18.4.0.35 10,770 1/19/2021
18.4.0.34 3,629 1/12/2021
18.4.0.33 14,287 1/5/2021
18.4.0.32 7,770 12/30/2020
18.4.0.31 8,754 12/22/2020
18.4.0.30 11,815 12/17/2020
18.3.0.53 8,564 12/8/2020
18.3.0.52 20,093 11/30/2020
18.3.0.51 5,098 11/23/2020
18.3.0.50 29,140 11/17/2020
18.3.0.48 10,013 11/11/2020
18.3.0.47 83,946 11/5/2020
18.3.0.44 6,201 10/27/2020
18.3.0.42 4,132 10/20/2020
18.3.0.40 3,967 10/12/2020
18.3.0.38 5,340 10/7/2020
18.3.0.35 11,718 10/1/2020
18.2.0.59 4,874 9/22/2020
18.2.0.58 5,355 9/15/2020
18.2.0.57 32,637 9/8/2020
18.2.0.56 8,039 9/1/2020
18.2.0.55 5,612 8/25/2020
18.2.0.54 2,421 8/18/2020
18.2.0.48 9,605 8/4/2020
18.2.0.47 2,590 7/28/2020
18.2.0.46 5,040 7/21/2020
18.2.0.45 3,286 7/14/2020
18.2.0.44 13,960 7/6/2020
18.1.0.59 7,551 6/23/2020
18.1.0.57 4,757 6/16/2020
18.1.0.56 7,706 6/9/2020
18.1.0.55 4,416 6/2/2020
18.1.0.54 6,876 5/27/2020
18.1.0.53 5,025 5/19/2020
18.1.0.52 3,629 5/13/2020
18.1.0.48 4,664 5/5/2020
18.1.0.46 9,012 4/28/2020
18.1.0.45 1,802 4/21/2020
18.1.0.44 10,862 4/14/2020
18.1.0.43 2,179 4/7/2020
18.1.0.42 8,521 4/1/2020
18.1.0.36-beta 1,677 3/19/2020
17.4.0.55 20,186 3/10/2020
17.4.0.53 2,935 3/3/2020
17.4.0.51 2,838 2/25/2020
17.4.0.50 3,237 2/18/2020
17.4.0.49 4,766 2/11/2020
17.4.0.47 6,621 2/5/2020
17.4.0.46 3,486 1/30/2020
17.4.0.44 50,378 1/21/2020
17.4.0.43 2,634 1/14/2020
17.4.0.41 5,119 1/7/2020
17.4.0.40 17,348 12/24/2019
17.4.0.39 17,525 12/17/2019
17.3.0.34 5,331 12/10/2019
17.3.0.33 3,489 12/4/2019
17.3.0.30 2,295 12/3/2019
17.3.0.29 2,119 11/26/2019
17.3.0.28 1,951 11/19/2019
17.3.0.27 1,303 11/12/2019
17.3.0.26 8,650 11/5/2019
17.3.0.21 4,593 10/29/2019
17.3.0.19 14,578 10/22/2019
17.3.0.17 2,264 10/15/2019
17.3.0.14 19,234 10/3/2019
17.3.0.9-beta 76,855 9/20/2019
17.2.0.51 9,734 9/10/2019
17.2.0.49 1,714 9/3/2019
17.2.0.47 1,893 8/27/2019
17.2.0.46 2,435 8/22/2019
17.2.0.41 1,587 8/13/2019
17.2.0.40 1,360 8/6/2019
17.2.0.39 9,974 7/30/2019
17.2.0.36 4,608 7/23/2019
17.2.0.35 7,740 7/17/2019
17.2.0.34 7,534 7/11/2019
17.2.0.28-beta 1,883 6/27/2019
17.1.0.53 3,346 6/25/2019
17.1.0.52 1,704 6/18/2019
17.1.0.51 1,667 6/11/2019
17.1.0.50 4,943 6/4/2019
17.1.0.49 1,290 5/28/2019
17.1.0.48 1,606 5/21/2019
17.1.0.47 2,069 5/14/2019
17.1.0.44 1,566 5/7/2019
17.1.0.43 1,848 4/30/2019
17.1.0.42 4,523 4/23/2019
17.1.0.41 7,645 4/16/2019
17.1.0.40 1,835 4/9/2019
17.1.0.38 2,643 3/29/2019
17.1.0.32-beta 1,187 3/13/2019
16.4.0.54 10,439 2/19/2019
16.4.0.53 1,490 2/13/2019
16.4.0.52 2,524 2/5/2019
16.4.0.48 1,927 1/22/2019
16.4.0.47 12,276 1/16/2019
16.4.0.46 1,473 1/8/2019
16.4.0.44 1,552 12/24/2018
16.4.0.42 4,481 12/17/2018
16.4.0.40-beta 1,094 12/10/2018
16.3.0.36 1,718 11/27/2018
16.3.0.35-beta 1,065 11/23/2018
16.3.0.29 1,952 10/30/2018
16.3.0.21 4,509 9/21/2018