Syncfusion.Xamarin.DocIORenderer 20.4.0.40

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Xamarin.DocIORenderer --version 20.4.0.40
NuGet\Install-Package Syncfusion.Xamarin.DocIORenderer -Version 20.4.0.40
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.Xamarin.DocIORenderer" Version="20.4.0.40" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Xamarin.DocIORenderer --version 20.4.0.40
#r "nuget: Syncfusion.Xamarin.DocIORenderer, 20.4.0.40"
#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.Xamarin.DocIORenderer as a Cake Addin
#addin nuget:?package=Syncfusion.Xamarin.DocIORenderer&version=20.4.0.40

// Install Syncfusion.Xamarin.DocIORenderer as a Cake Tool
#tool nuget:?package=Syncfusion.Xamarin.DocIORenderer&version=20.4.0.40

Syncfusion Xamarin Word To PDF Converter

The Syncfusion Xamarin Word To PDF Converter (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.

Xamarin Word To PDF Converter

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.Xamarin.DocIORenderer 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 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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.4 is compatible.  netstandard1.5 was computed.  netstandard1.6 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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 (1)

Showing the top 1 popular GitHub repositories that depend on Syncfusion.Xamarin.DocIORenderer:

Repository Stars
syncfusion/xamarin-demos
This repository contains the Syncfusion Xamarin UI control’s samples and the guide to use them.
Version Downloads Last updated
25.1.37 51 3/26/2024
25.1.35 119 3/15/2024
24.2.9 105 3/4/2024
24.2.8 111 2/26/2024
24.2.7 90 2/19/2024
24.2.6 85 2/14/2024
24.2.5 84 2/12/2024
24.2.4 85 2/5/2024
24.2.3 367 1/31/2024
24.1.47 93 1/22/2024
24.1.46 176 1/16/2024
24.1.45 216 1/8/2024
24.1.44 88 1/2/2024
24.1.43 86 12/27/2023
24.1.41 526 12/18/2023
23.2.7 130 12/6/2023
23.2.6 217 11/28/2023
23.2.5 117 11/23/2023
23.2.4 229 11/20/2023
23.1.44 185 11/6/2023
23.1.43 140 10/30/2023
23.1.42 122 10/23/2023
23.1.41 100 10/16/2023
23.1.40 159 10/10/2023
23.1.39 597 10/4/2023
23.1.38 175 9/26/2023
23.1.36 532 9/15/2023
22.2.12 187 9/5/2023
22.2.11 176 8/28/2023
22.2.10 162 8/22/2023
22.2.9 162 8/14/2023
22.2.8 188 8/7/2023
22.2.7 225 8/2/2023
22.2.5 967 7/27/2023
22.1.39 184 7/18/2023
22.1.38 259 7/11/2023
22.1.37 186 7/3/2023
22.1.36 181 6/28/2023
22.1.34 1,636 6/21/2023
21.2.10 287 6/13/2023
21.2.9 145 6/6/2023
21.2.8 179 5/30/2023
21.2.6 247 5/22/2023
21.2.5 196 5/15/2023
21.2.4 228 5/9/2023
21.2.3 983 5/3/2023
21.1.41 1,073 4/19/2023
21.1.39 896 4/10/2023
21.1.38 1,183 4/3/2023
21.1.37 259 3/29/2023
21.1.35 647 3/23/2023
20.4.0.54 519 3/13/2023
20.4.0.53 665 3/7/2023
20.4.0.52 336 2/28/2023
20.4.0.51 341 2/21/2023
20.4.0.50 472 2/14/2023
20.4.0.49 2,285 2/7/2023
20.4.0.48 522 2/1/2023
20.4.0.44 563 1/18/2023
20.4.0.43 454 1/10/2023
20.4.0.42 386 1/4/2023
20.4.0.41 362 12/29/2022
20.4.0.40 328 12/28/2022
20.4.0.38 869 12/21/2022
20.3.0.61 424 12/12/2022
20.3.0.60 318 12/6/2022
20.3.0.59 592 11/29/2022
20.3.0.58 355 11/22/2022
20.3.0.57 509 11/15/2022
20.3.0.56 590 11/8/2022
20.3.0.52 600 10/27/2022
20.3.0.50 482 10/18/2022
20.3.0.49 488 10/11/2022
20.3.0.48 697 10/5/2022
20.3.0.47 990 9/29/2022
20.2.0.50 549 9/20/2022
20.2.0.49 506 9/13/2022
20.2.0.48 498 9/6/2022
20.2.0.46 534 8/30/2022
20.2.0.45 525 8/23/2022
20.2.0.44 502 8/16/2022
20.2.0.43 728 8/8/2022
20.2.0.40 565 7/26/2022
20.2.0.39 865 7/19/2022
20.2.0.38 521 7/12/2022
20.2.0.36 1,197 6/30/2022
20.1.0.61 3,934 6/20/2022
20.1.0.60 515 6/14/2022
20.1.0.59 550 6/7/2022
20.1.0.58 524 5/31/2022
20.1.0.57 2,202 5/24/2022
20.1.0.56 628 5/17/2022
20.1.0.55 675 5/12/2022
20.1.0.52 929 5/3/2022
20.1.0.51 679 4/26/2022
20.1.0.50 592 4/19/2022
20.1.0.48 1,025 4/12/2022
20.1.0.47 1,031 4/4/2022
19.4.0.56 2,491 3/15/2022
19.4.0.55 697 3/8/2022
19.4.0.54 673 2/28/2022
19.4.0.53 640 2/22/2022
19.4.0.52 694 2/15/2022
19.4.0.50 1,014 2/8/2022
19.4.0.48 3,524 1/31/2022
19.4.0.47 724 1/25/2022
19.4.0.43 782 1/18/2022
19.4.0.42 1,171 1/11/2022
19.4.0.41 444 1/4/2022
19.4.0.40 431 12/28/2021
19.4.0.38 853 12/17/2021
19.3.0.59 823 12/14/2021
19.3.0.57 1,327 12/7/2021
19.3.0.56 1,206 11/29/2021
19.3.0.55 866 11/23/2021
19.3.0.54 439 11/17/2021
19.3.0.53 552 11/12/2021
19.3.0.48 624 11/3/2021
19.3.0.47 506 10/26/2021
19.3.0.46 634 10/19/2021
19.3.0.45 500 10/12/2021
19.3.0.44 482 10/5/2021
19.3.0.43 590 9/30/2021
19.2.0.62 512 9/13/2021
19.2.0.60 499 9/7/2021
19.2.0.59 555 8/30/2021
19.2.0.57 1,677 8/24/2021
19.2.0.56 717 8/17/2021
19.2.0.55 555 8/11/2021
19.2.0.51 1,230 8/2/2021
19.2.0.49 565 7/26/2021
19.2.0.48 683 7/19/2021
19.2.0.47 4,052 7/13/2021
19.2.0.46 535 7/6/2021
19.2.0.44 2,164 6/30/2021
19.1.0.69 2,662 6/14/2021
19.1.0.67 527 6/7/2021
19.1.0.66 591 5/31/2021
19.1.0.65 705 5/24/2021
19.1.0.64 728 5/19/2021
19.1.0.63 662 5/13/2021
19.1.0.59 561 5/3/2021
19.1.0.58 532 4/26/2021
19.1.0.57 531 4/20/2021
19.1.0.56 6,975 4/13/2021
19.1.0.55 624 4/6/2021
19.1.0.54 1,360 3/30/2021
18.4.0.49 1,857 3/22/2021
18.4.0.48 568 3/16/2021
18.4.0.47 803 3/9/2021
18.4.0.46 1,083 3/2/2021
18.4.0.44 595 2/23/2021
18.4.0.43 689 2/15/2021
18.4.0.42 954 2/9/2021
18.4.0.41 45,634 2/2/2021
18.4.0.39 924 1/28/2021
18.4.0.35 613 1/19/2021
18.4.0.34 681 1/12/2021
18.4.0.33 898 1/4/2021
18.4.0.32 488 12/30/2020
18.4.0.31 710 12/22/2020
18.4.0.30 1,735 12/17/2020
18.3.0.53 6,012 12/8/2020
18.3.0.52 631 11/30/2020
18.3.0.51 707 11/23/2020
18.3.0.50 735 11/17/2020
18.3.0.48 1,130 11/10/2020
18.3.0.47 1,029 11/5/2020
18.3.0.44 785 10/27/2020
18.3.0.42 706 10/20/2020
18.3.0.40 958 10/12/2020
18.3.0.38 632 10/7/2020
18.3.0.35 800 10/1/2020
18.2.0.59 9,463 9/22/2020
18.2.0.58 785 9/15/2020
18.2.0.57 754 9/8/2020
18.2.0.56 778 9/1/2020
18.2.0.55 635 8/25/2020
18.2.0.54 682 8/18/2020
18.2.0.48 922 8/4/2020
18.2.0.47 681 7/28/2020
18.2.0.46 1,451 7/21/2020
18.2.0.45 656 7/14/2020
18.2.0.44 955 7/6/2020
18.1.0.59 1,087 6/23/2020
18.1.0.57 857 6/16/2020
18.1.0.56 1,203 6/9/2020
18.1.0.55 813 6/2/2020
18.1.0.54 708 5/27/2020
18.1.0.53 723 5/19/2020
18.1.0.52 1,211 5/13/2020
18.1.0.48 1,164 5/5/2020
18.1.0.46 2,207 4/28/2020
18.1.0.45 749 4/21/2020
18.1.0.44 624 4/14/2020
18.1.0.43 695 4/7/2020
18.1.0.42 1,015 4/1/2020
18.1.0.36-beta 393 3/19/2020
17.4.0.55 1,713 3/10/2020
17.4.0.53 997 3/3/2020
17.4.0.51 2,193 2/25/2020
17.4.0.50 666 2/18/2020
17.4.0.49 905 2/11/2020
17.4.0.47 801 2/5/2020
17.4.0.46 669 1/30/2020
17.4.0.44 970 1/21/2020
17.4.0.43 793 1/14/2020
17.4.0.41 912 1/7/2020
17.4.0.40 877 12/24/2019
17.4.0.39 1,166 12/17/2019
17.3.0.34 837 12/10/2019
17.3.0.33 1,037 12/4/2019
17.3.0.30 703 12/3/2019
17.3.0.29 1,186 11/26/2019
17.3.0.28 988 11/19/2019
17.3.0.27 1,423 11/12/2019
17.3.0.26 1,440 11/5/2019
17.3.0.21 940 10/29/2019
17.3.0.19 832 10/22/2019
17.3.0.17 822 10/15/2019
17.3.0.14 1,319 10/3/2019
17.3.0.9-beta 435 9/20/2019
17.2.0.51 1,577 9/10/2019
17.2.0.49 779 9/3/2019
17.2.0.47 932 8/27/2019
17.2.0.46 913 8/22/2019
17.2.0.41 12,148 8/13/2019
17.2.0.40 897 8/6/2019
17.2.0.39 849 7/30/2019
17.2.0.36 744 7/23/2019
17.2.0.35 880 7/17/2019
17.2.0.34 972 7/11/2019
17.2.0.28-beta 849 6/27/2019
17.1.0.53 755 6/25/2019
17.1.0.52 784 6/18/2019
17.1.0.51 893 6/11/2019
17.1.0.50 758 6/4/2019
17.1.0.49 724 5/28/2019
17.1.0.48 1,147 5/21/2019
17.1.0.47 914 5/14/2019
17.1.0.44 1,493 5/7/2019
17.1.0.43 940 4/30/2019
17.1.0.42 894 4/23/2019
17.1.0.41 858 4/16/2019
17.1.0.40 796 4/9/2019
17.1.0.38 821 3/29/2019
17.1.0.32-beta 694 3/13/2019
16.4.0.54 3,390 2/19/2019
16.4.0.53 1,092 2/13/2019
16.4.0.52 1,324 2/5/2019
16.4.0.48 1,057 1/22/2019
16.4.0.47 865 1/16/2019
16.4.0.46 1,106 1/8/2019
16.4.0.44 945 12/24/2018
16.4.0.42 1,216 12/17/2018
16.4.0.40-beta 543 12/10/2018
16.3.0.36 1,022 11/27/2018
16.3.0.35-beta 872 11/23/2018
16.3.0.29 1,135 10/30/2018
16.3.0.21 1,490 9/21/2018
16.3.0.17-beta 644 9/12/2018
16.2.0.50 1,596 8/28/2018
16.2.0.46 1,444 8/6/2018
16.2.0.42 1,227 6/29/2018
16.2.0.41 1,571 6/26/2018
16.1.0.37 1,228 4/25/2018
16.1.0.32 1,048 3/29/2018
16.1.0.26 1,013 3/7/2018
16.1.0.24 1,209 2/22/2018