Syncfusion.DocIORenderer.Net.Core 25.2.5

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 25.2.5                
NuGet\Install-Package Syncfusion.DocIORenderer.Net.Core -Version 25.2.5                
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="25.2.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.DocIORenderer.Net.Core --version 25.2.5                
#r "nuget: Syncfusion.DocIORenderer.Net.Core, 25.2.5"                
#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 Syncfusion.DocIORenderer.Net.Core as a Cake Addin
#addin nuget:?package=Syncfusion.DocIORenderer.Net.Core&version=25.2.5

// Install Syncfusion.DocIORenderer.Net.Core as a Cake Tool
#tool nuget:?package=Syncfusion.DocIORenderer.Net.Core&version=25.2.5                

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 licnense 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 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ 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 is compatible.  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 is compatible.  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. 
.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 (5)

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 for .net 8.0

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)

Verify.Syncfusion

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

Middt.Framework.Common

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
26.1.42 1,151 7/15/2024
26.1.41 2,040 7/8/2024
26.1.40 2,231 7/1/2024
26.1.39 4,575 6/24/2024
26.1.38 4,014 6/18/2024
26.1.35 6,759 6/11/2024
25.2.7 5,705 6/3/2024
25.2.6 13,100 5/28/2024
25.2.5 8,124 5/21/2024
25.2.4 4,924 5/14/2024
25.2.3 4,003 5/8/2024
25.1.42 5,958 4/29/2024
25.1.41 2,309 4/23/2024
25.1.40 14,261 4/15/2024
25.1.39 9,642 4/8/2024
25.1.38 8,410 4/1/2024
25.1.37 2,418 3/26/2024
25.1.35 22,667 3/15/2024
24.2.9 13,808 3/4/2024
24.2.8 7,446 2/26/2024
24.2.7 10,767 2/19/2024
24.2.6 7,824 2/14/2024
24.2.5 626 2/12/2024
24.2.4 5,457 2/6/2024
24.2.3 10,676 1/31/2024
24.1.47 9,082 1/23/2024
24.1.46 3,437 1/16/2024
24.1.45 10,905 1/9/2024
24.1.44 5,290 1/3/2024
24.1.43 4,221 12/27/2023
24.1.41 29,957 12/18/2023
23.2.7 28,509 12/6/2023
23.2.6 10,728 11/28/2023
23.2.5 3,213 11/23/2023
23.2.4 9,807 11/20/2023
23.1.44 11,599 11/6/2023
23.1.43 6,251 10/30/2023
23.1.42 6,812 10/23/2023
23.1.41 13,820 10/16/2023
23.1.40 12,630 10/10/2023
23.1.39 7,807 10/4/2023
23.1.38 6,459 9/26/2023
23.1.36 30,674 9/15/2023
22.2.12 20,307 9/5/2023
22.2.11 4,072 8/28/2023
22.2.10 6,551 8/22/2023
22.2.9 16,199 8/14/2023
22.2.8 4,079 8/7/2023
22.2.7 2,955 8/2/2023
22.2.5 14,901 7/27/2023
22.1.39 13,603 7/18/2023
22.1.38 6,363 7/11/2023
22.1.37 4,792 7/3/2023
22.1.36 13,249 6/28/2023
22.1.34 15,814 6/21/2023
21.2.10 10,728 6/13/2023
21.2.9 6,881 6/6/2023
21.2.8 14,881 5/30/2023
21.2.6 11,116 5/22/2023
21.2.5 15,944 5/15/2023
21.2.4 7,794 5/9/2023
21.2.3 8,063 5/3/2023
21.1.41 26,029 4/19/2023
21.1.39 12,755 4/10/2023
21.1.38 8,557 4/3/2023
21.1.37 3,571 3/29/2023
21.1.35 12,843 3/23/2023
20.4.0.54 62,778 3/13/2023
20.4.0.53 10,529 3/7/2023
20.4.0.52 11,493 2/28/2023
20.4.0.51 13,291 2/21/2023
20.4.0.50 6,813 2/14/2023
20.4.0.49 7,832 2/7/2023
20.4.0.48 18,341 2/1/2023
20.4.0.44 56,106 1/18/2023
20.4.0.43 20,276 1/10/2023
20.4.0.42 10,530 1/4/2023
20.4.0.41 4,652 12/29/2022
20.4.0.40 781 12/28/2022
20.4.0.38 14,868 12/21/2022
20.3.0.61 8,570 12/13/2022
20.3.0.60 9,139 12/6/2022
20.3.0.59 11,636 11/29/2022
20.3.0.58 4,187 11/22/2022
20.3.0.57 2,775 11/15/2022
20.3.0.56 8,038 11/8/2022
20.3.0.52 14,025 10/27/2022
20.3.0.50 14,596 10/18/2022
20.3.0.49 10,884 10/11/2022
20.3.0.48 45,738 10/5/2022
20.3.0.47 43,373 9/29/2022
20.2.0.50 12,840 9/20/2022
20.2.0.49 6,100 9/13/2022
20.2.0.48 14,921 9/6/2022
20.2.0.46 2,256 8/30/2022
20.2.0.45 11,737 8/23/2022
20.2.0.44 10,067 8/16/2022
20.2.0.43 37,466 8/8/2022
20.2.0.40 14,165 7/26/2022
20.2.0.39 6,064 7/19/2022
20.2.0.38 12,491 7/12/2022
20.2.0.36 33,857 6/30/2022
20.1.0.61 37,749 6/21/2022
20.1.0.60 10,537 6/14/2022
20.1.0.59 22,843 6/7/2022
20.1.0.58 42,554 5/31/2022
20.1.0.57 5,800 5/24/2022
20.1.0.56 9,832 5/17/2022
20.1.0.55 8,792 5/12/2022
20.1.0.52 12,556 5/3/2022
20.1.0.51 10,507 4/26/2022
20.1.0.50 10,107 4/19/2022
20.1.0.48 17,002 4/12/2022
20.1.0.47 18,771 4/4/2022
19.4.0.56 42,472 3/15/2022
19.4.0.55 7,851 3/8/2022
19.4.0.54 7,137 3/1/2022
19.4.0.53 35,288 2/22/2022
19.4.0.52 15,030 2/15/2022
19.4.0.50 12,933 2/8/2022
19.4.0.48 16,283 1/31/2022
19.4.0.47 5,948 1/25/2022
19.4.0.43 4,681 1/18/2022
19.4.0.42 10,856 1/11/2022
19.4.0.41 257,266 1/4/2022
19.4.0.40 9,898 12/28/2021
19.4.0.38 19,144 12/17/2021
19.3.0.59 11,928 12/14/2021
19.3.0.57 8,761 12/7/2021
19.3.0.56 6,689 11/30/2021
19.3.0.55 10,440 11/23/2021
19.3.0.54 3,874 11/17/2021
19.3.0.53 9,395 11/12/2021
19.3.0.48 11,338 11/2/2021
19.3.0.47 19,312 10/26/2021
19.3.0.46 7,000 10/19/2021
19.3.0.45 11,799 10/12/2021
19.3.0.44 3,056 10/5/2021
19.3.0.43 13,722 9/30/2021
19.2.0.62 29,551 9/14/2021
19.2.0.60 5,986 9/7/2021
19.2.0.59 7,722 8/31/2021
19.2.0.57 4,640 8/24/2021
19.2.0.56 7,223 8/17/2021
19.2.0.55 6,611 8/11/2021
19.2.0.51 2,057 8/2/2021
19.2.0.49 2,611 7/27/2021
19.2.0.48 7,731 7/20/2021
19.2.0.47 1,644 7/13/2021
19.2.0.46 4,324 7/6/2021
19.2.0.44 6,463 6/30/2021
19.1.0.69 5,007 6/14/2021
19.1.0.67 58,527 6/8/2021
19.1.0.66 3,155 6/1/2021
19.1.0.65 4,229 5/25/2021
19.1.0.64 3,182 5/19/2021
19.1.0.63 28,055 5/13/2021
19.1.0.59 3,976 5/4/2021
19.1.0.58 3,441 4/27/2021
19.1.0.57 3,057 4/20/2021
19.1.0.56 14,260 4/13/2021
19.1.0.55 2,355 4/6/2021
19.1.0.54 64,917 3/30/2021
18.4.0.49 16,087 3/23/2021
18.4.0.48 6,944 3/16/2021
18.4.0.47 17,619 3/9/2021
18.4.0.46 4,022 3/2/2021
18.4.0.44 4,839 2/23/2021
18.4.0.43 7,906 2/16/2021
18.4.0.42 6,443 2/9/2021
18.4.0.41 13,408 2/2/2021
18.4.0.39 21,651 1/28/2021
18.4.0.35 10,323 1/19/2021
18.4.0.34 3,411 1/12/2021
18.4.0.33 7,762 1/5/2021
18.4.0.32 7,427 12/30/2020
18.4.0.31 6,453 12/22/2020
18.4.0.30 11,549 12/17/2020
18.3.0.53 7,842 12/8/2020
18.3.0.52 15,583 11/30/2020
18.3.0.51 4,936 11/23/2020
18.3.0.50 27,714 11/17/2020
18.3.0.48 9,218 11/11/2020
18.3.0.47 57,669 11/5/2020
18.3.0.44 5,730 10/27/2020
18.3.0.42 3,593 10/20/2020
18.3.0.40 3,598 10/12/2020
18.3.0.38 5,167 10/7/2020
18.3.0.35 11,485 10/1/2020
18.2.0.59 4,175 9/22/2020
18.2.0.58 3,890 9/15/2020
18.2.0.57 32,454 9/8/2020
18.2.0.56 7,503 9/1/2020
18.2.0.55 5,045 8/25/2020
18.2.0.54 2,274 8/18/2020
18.2.0.48 8,779 8/4/2020
18.2.0.47 2,342 7/28/2020
18.2.0.46 4,871 7/21/2020
18.2.0.45 3,069 7/14/2020
18.2.0.44 13,619 7/6/2020
18.1.0.59 6,373 6/23/2020
18.1.0.57 3,661 6/16/2020
18.1.0.56 5,438 6/9/2020
18.1.0.55 4,262 6/2/2020
18.1.0.54 6,718 5/27/2020
18.1.0.53 4,867 5/19/2020
18.1.0.52 3,350 5/13/2020
18.1.0.48 4,078 5/5/2020
18.1.0.46 7,259 4/28/2020
18.1.0.45 1,634 4/21/2020
18.1.0.44 10,517 4/14/2020
18.1.0.43 2,008 4/7/2020
18.1.0.42 8,333 4/1/2020
18.1.0.36-beta 1,524 3/19/2020
17.4.0.55 19,871 3/10/2020
17.4.0.53 2,733 3/3/2020
17.4.0.51 2,645 2/25/2020
17.4.0.50 3,052 2/18/2020
17.4.0.49 4,590 2/11/2020
17.4.0.47 5,451 2/5/2020
17.4.0.46 3,307 1/30/2020
17.4.0.44 46,955 1/21/2020
17.4.0.43 2,482 1/14/2020
17.4.0.41 3,088 1/7/2020
17.4.0.40 14,244 12/24/2019
17.4.0.39 15,274 12/17/2019
17.3.0.34 5,037 12/10/2019
17.3.0.33 2,858 12/4/2019
17.3.0.30 2,139 12/3/2019
17.3.0.29 1,943 11/26/2019
17.3.0.28 1,792 11/19/2019
17.3.0.27 1,141 11/12/2019
17.3.0.26 8,316 11/5/2019
17.3.0.21 4,423 10/29/2019
17.3.0.19 14,345 10/22/2019
17.3.0.17 2,101 10/15/2019
17.3.0.14 19,061 10/3/2019
17.3.0.9-beta 76,709 9/20/2019
17.2.0.51 9,543 9/10/2019
17.2.0.49 1,559 9/3/2019
17.2.0.47 1,727 8/27/2019
17.2.0.46 2,274 8/22/2019
17.2.0.41 1,433 8/13/2019
17.2.0.40 1,168 8/6/2019
17.2.0.39 6,498 7/30/2019
17.2.0.36 4,442 7/23/2019
17.2.0.35 7,120 7/17/2019
17.2.0.34 7,318 7/11/2019
17.2.0.28-beta 1,710 6/27/2019
17.1.0.53 2,953 6/25/2019
17.1.0.52 1,542 6/18/2019
17.1.0.51 1,505 6/11/2019
17.1.0.50 4,782 6/4/2019
17.1.0.49 1,133 5/28/2019
17.1.0.48 1,430 5/21/2019
17.1.0.47 1,907 5/14/2019
17.1.0.44 1,403 5/7/2019
17.1.0.43 1,677 4/30/2019
17.1.0.42 4,293 4/23/2019
17.1.0.41 5,195 4/16/2019
17.1.0.40 1,680 4/9/2019
17.1.0.38 2,478 3/29/2019
17.1.0.32-beta 1,026 3/13/2019
16.4.0.54 10,239 2/19/2019
16.4.0.53 1,326 2/13/2019
16.4.0.52 2,350 2/5/2019
16.4.0.48 1,760 1/22/2019
16.4.0.47 12,103 1/16/2019
16.4.0.46 1,277 1/8/2019
16.4.0.44 1,369 12/24/2018
16.4.0.42 4,074 12/17/2018
16.4.0.40-beta 927 12/10/2018
16.3.0.36 1,542 11/27/2018
16.3.0.35-beta 911 11/23/2018
16.3.0.29 1,763 10/30/2018
16.3.0.21 3,743 9/21/2018