Syncfusion.Xamarin.PresentationRenderer 20.2.0.45

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

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

Syncfusion Xamarin PowerPoint to PDF converter library

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

Xamarin PowerPoint to PDF converter

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

Key Features

System Requirements

Getting Started

You can fetch the Syncfusion .NET Core PowerPoint library NuGet by simply running the command Install-Package Syncfusion.Xamarin.PresentationRenderer from the Package Manager Console in Visual Studio.

Try the following code example to convert the PowerPoint Presentation to PDF.

//Namespaces to perform PPTX to PDF conversion
using Syncfusion.OfficeChartToImageConverter;
using Syncfusion.Presentation;
using Syncfusion.PresentationToPdfConverter;
using Syncfusion.Pdf;
using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Open, FileAccess.Read))
{
	//Open the existing PowerPoint presentation.
	using (IPresentation pptxDoc = Presentation.Open(fileStreamInput))
	{
		//Convert the PowerPoint document to PDF document.
		using (PdfDocument pdfDocument = PresentationToPdfConverter.Convert(pptxDoc))
		{
			//Creates an instance of memory stream.
			using (MemoryStream pdfStream = new MemoryStream())
			{
				//Save the converted PDF document to memory stream.
				pdfDocument.Save(pdfStream);
			}
		}
	}
}

Try the following code example to convert the PowerPoint Presentation to Image.

//Namespaces to perform PPTX to PDF conversion
using Syncfusion.OfficeChartToImageConverter;
using Syncfusion.Presentation;
using Syncfusion.PresentationToPdfConverter;
using Syncfusion.Pdf;
using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Open, FileAccess.Read))
{
	//Open the existing PowerPoint presentation.
	using (IPresentation pptxDoc = Presentation.Open(fileStreamInput))
	{
		//Initialize PresentationRenderer to perform image conversion.
		pptxDoc.PresentationRenderer = new PresentationRenderer();
		//Converts entire Presentation to image stream.
		Stream[] streams = pptxDoc.RenderAsImages(ExportImageFormat.Jpeg);
		foreach (Stream stream in streams)
		{
			//Create the output image file stream.
			using (FileStream fileStreamOutput = File.Create("Output_" + Guid.NewGuid().ToString() + ".jpg"))
			{
				//Copy the converted image stream into created output stream.
				stream.CopyTo(fileStreamOutput);
			}
		}
	}
}

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 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 Web Forms, 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.PresentationRenderer:

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
26.1.39 42 6/24/2024
26.1.38 82 6/18/2024
26.1.35 73 6/11/2024
25.2.7 89 6/3/2024
25.2.6 72 5/28/2024
25.2.5 77 5/21/2024
25.2.4 57 5/14/2024
25.2.3 115 5/8/2024
25.1.42 91 4/29/2024
25.1.41 86 4/23/2024
25.1.40 93 4/15/2024
25.1.39 76 4/8/2024
25.1.38 102 4/1/2024
25.1.37 79 3/26/2024
25.1.35 125 3/15/2024
24.2.9 102 3/4/2024
24.2.8 109 2/26/2024
24.2.7 93 2/19/2024
24.2.6 88 2/14/2024
24.2.5 85 2/12/2024
24.2.4 90 2/5/2024
24.2.3 100 1/31/2024
24.1.47 90 1/22/2024
24.1.46 104 1/16/2024
24.1.45 117 1/8/2024
24.1.44 103 1/2/2024
24.1.43 99 12/27/2023
24.1.41 138 12/18/2023
23.2.7 177 12/6/2023
23.2.6 145 11/28/2023
23.2.5 132 11/23/2023
23.2.4 131 11/20/2023
23.1.44 151 11/6/2023
23.1.43 140 10/30/2023
23.1.42 147 10/23/2023
23.1.41 159 10/16/2023
23.1.40 155 10/10/2023
23.1.39 147 10/4/2023
23.1.38 499 9/26/2023
23.1.36 187 9/15/2023
22.2.12 174 9/5/2023
22.2.11 191 8/28/2023
22.2.10 158 8/22/2023
22.2.9 182 8/14/2023
22.2.8 162 8/7/2023
22.2.7 152 8/2/2023
22.2.5 208 7/27/2023
22.1.39 173 7/18/2023
22.1.38 167 7/11/2023
22.1.37 185 7/3/2023
22.1.36 188 6/28/2023
22.1.34 169 6/21/2023
21.2.10 201 6/12/2023
21.2.9 162 6/6/2023
21.2.8 214 5/30/2023
21.2.6 204 5/22/2023
21.2.5 234 5/15/2023
21.2.4 228 5/9/2023
21.2.3 261 5/3/2023
21.1.41 237 4/19/2023
21.1.39 275 4/10/2023
21.1.38 283 4/3/2023
21.1.37 270 3/29/2023
21.1.35 369 3/23/2023
20.4.0.54 351 3/13/2023
20.4.0.53 324 3/7/2023
20.4.0.52 340 2/28/2023
20.4.0.51 340 2/21/2023
20.4.0.50 337 2/14/2023
20.4.0.49 2,412 2/7/2023
20.4.0.48 418 2/1/2023
20.4.0.44 414 1/18/2023
20.4.0.43 384 1/10/2023
20.4.0.42 418 1/4/2023
20.4.0.41 388 12/29/2022
20.4.0.40 367 12/28/2022
20.4.0.38 411 12/21/2022
20.3.0.61 400 12/12/2022
20.3.0.60 392 12/6/2022
20.3.0.59 523 11/29/2022
20.3.0.58 437 11/22/2022
20.3.0.57 453 11/15/2022
20.3.0.56 451 11/8/2022
20.3.0.52 473 10/27/2022
20.3.0.50 531 10/18/2022
20.3.0.49 533 10/11/2022
20.3.0.48 470 10/5/2022
20.3.0.47 544 9/29/2022
20.2.0.50 528 9/20/2022
20.2.0.49 533 9/13/2022
20.2.0.48 513 9/6/2022
20.2.0.46 528 8/30/2022
20.2.0.45 547 8/23/2022
20.2.0.44 541 8/16/2022
20.2.0.43 611 8/8/2022
20.2.0.40 543 7/26/2022
20.2.0.39 552 7/19/2022
20.2.0.38 543 7/12/2022
20.2.0.36 621 6/30/2022
20.1.0.61 577 6/20/2022
20.1.0.60 542 6/14/2022
20.1.0.59 522 6/6/2022
20.1.0.58 557 5/31/2022
20.1.0.57 2,066 5/24/2022
20.1.0.56 615 5/17/2022
20.1.0.55 619 5/12/2022
20.1.0.52 596 5/3/2022
20.1.0.51 612 4/26/2022
20.1.0.50 539 4/19/2022
20.1.0.48 530 4/12/2022
20.1.0.47 589 4/4/2022
19.4.0.56 784 3/14/2022
19.4.0.55 695 3/8/2022
19.4.0.54 698 2/28/2022
19.4.0.53 700 2/22/2022
19.4.0.52 711 2/15/2022
19.4.0.50 718 2/8/2022
19.4.0.48 3,476 1/31/2022
19.4.0.47 708 1/25/2022
19.4.0.43 700 1/18/2022
19.4.0.42 607 1/11/2022
19.4.0.41 395 1/4/2022
19.4.0.40 437 12/28/2021
19.4.0.38 487 12/17/2021
19.3.0.59 430 12/14/2021
19.3.0.57 448 12/7/2021
19.3.0.56 1,153 11/29/2021
19.3.0.55 552 11/23/2021
19.3.0.54 449 11/17/2021
19.3.0.53 480 11/12/2021
19.3.0.48 493 11/2/2021
19.3.0.47 490 10/26/2021
19.3.0.46 454 10/19/2021
19.3.0.45 494 10/12/2021
19.3.0.44 492 10/5/2021
19.3.0.43 556 9/30/2021
19.2.0.62 528 9/13/2021
19.2.0.60 489 9/7/2021
19.2.0.59 510 8/30/2021
19.2.0.57 552 8/24/2021
19.2.0.56 518 8/17/2021
19.2.0.55 574 8/11/2021
19.2.0.51 1,151 8/2/2021
19.2.0.49 494 7/26/2021
19.2.0.48 487 7/19/2021
19.2.0.47 544 7/13/2021
19.2.0.46 529 7/6/2021
19.2.0.44 1,168 6/30/2021
19.1.0.69 1,130 6/14/2021
19.1.0.67 537 6/7/2021
19.1.0.66 523 5/31/2021
19.1.0.65 525 5/24/2021
19.1.0.64 696 5/19/2021
19.1.0.63 606 5/13/2021
19.1.0.59 522 5/3/2021
19.1.0.58 506 4/26/2021
19.1.0.57 526 4/20/2021
19.1.0.56 502 4/13/2021
19.1.0.55 547 4/6/2021
19.1.0.54 1,120 3/30/2021
18.4.0.49 555 3/22/2021
18.4.0.48 491 3/16/2021
18.4.0.47 538 3/9/2021
18.4.0.46 508 3/2/2021
18.4.0.44 567 2/23/2021
18.4.0.43 616 2/15/2021
18.4.0.42 561 2/9/2021
18.4.0.41 44,476 2/2/2021
18.4.0.39 715 1/28/2021
18.4.0.35 3,767 1/19/2021
18.4.0.34 505 1/12/2021
18.4.0.33 561 1/4/2021
18.4.0.32 572 12/30/2020
18.4.0.31 519 12/22/2020
18.4.0.30 702 12/17/2020
18.3.0.53 626 12/8/2020
18.3.0.52 752 11/30/2020
18.3.0.51 583 11/23/2020
18.3.0.50 586 11/17/2020
18.3.0.48 567 11/10/2020
18.3.0.47 931 11/5/2020
18.3.0.44 775 10/27/2020
18.3.0.42 636 10/20/2020
18.3.0.40 875 10/12/2020
18.3.0.38 666 10/7/2020
18.3.0.35 684 10/1/2020
18.2.0.59 583 9/22/2020
18.2.0.58 650 9/15/2020
18.2.0.57 556 9/8/2020
18.2.0.56 555 9/1/2020
18.2.0.55 633 8/25/2020
18.2.0.54 596 8/18/2020
18.2.0.48 764 8/4/2020
18.2.0.47 637 7/28/2020
18.2.0.46 583 7/21/2020
18.2.0.45 652 7/14/2020
18.2.0.44 898 7/6/2020
18.1.0.59 647 6/23/2020
18.1.0.57 609 6/16/2020
18.1.0.56 646 6/9/2020
18.1.0.55 628 6/2/2020
18.1.0.54 645 5/27/2020
18.1.0.53 672 5/19/2020
18.1.0.52 819 5/13/2020
18.1.0.48 674 5/5/2020
18.1.0.46 670 4/28/2020
18.1.0.45 657 4/21/2020
18.1.0.44 683 4/14/2020
18.1.0.43 708 4/7/2020
18.1.0.42 850 4/1/2020
18.1.0.36-beta 408 3/19/2020
17.4.0.55 853 3/10/2020
17.4.0.53 778 3/3/2020
17.4.0.51 1,883 2/25/2020
17.4.0.50 680 2/18/2020
17.4.0.49 694 2/11/2020
17.4.0.47 648 2/5/2020
17.4.0.46 658 1/30/2020
17.4.0.44 662 1/21/2020
17.4.0.43 703 1/14/2020
17.4.0.41 694 1/7/2020
17.4.0.40 709 12/24/2019
17.4.0.39 1,034 12/17/2019
17.3.0.34 677 12/10/2019
17.3.0.33 644 12/4/2019
17.3.0.30 676 12/3/2019
17.3.0.29 722 11/26/2019
17.3.0.28 695 11/19/2019
17.3.0.27 675 11/12/2019
17.3.0.26 731 11/5/2019
17.3.0.21 743 10/29/2019
17.3.0.19 705 10/22/2019
17.3.0.17 744 10/15/2019
17.3.0.14 981 10/3/2019
17.3.0.9-beta 491 9/20/2019
17.2.0.51 874 9/10/2019
17.2.0.49 712 9/3/2019
17.2.0.47 728 8/27/2019
17.2.0.46 852 8/22/2019
17.2.0.41 742 8/13/2019
17.2.0.40 800 8/6/2019
17.2.0.39 782 7/30/2019
17.2.0.36 745 7/23/2019
17.2.0.35 737 7/17/2019
17.2.0.34 947 7/11/2019
17.2.0.28-beta 488 6/27/2019
17.1.0.53 772 6/25/2019
17.1.0.52 732 6/18/2019
17.1.0.51 774 6/11/2019
17.1.0.50 765 6/4/2019
17.1.0.49 742 5/28/2019
17.1.0.48 764 5/21/2019
17.1.0.47 1,001 5/14/2019
17.1.0.44 857 5/7/2019
17.1.0.43 881 4/30/2019
17.1.0.42 953 4/23/2019
17.1.0.41 891 4/16/2019
17.1.0.40 919 4/9/2019
17.1.0.38 988 3/29/2019
17.1.0.32-beta 585 3/13/2019