Syncfusion.Xamarin.PresentationRenderer 27.2.3

Prefix Reserved
dotnet add package Syncfusion.Xamarin.PresentationRenderer --version 27.2.3                
NuGet\Install-Package Syncfusion.Xamarin.PresentationRenderer -Version 27.2.3                
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="27.2.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Xamarin.PresentationRenderer --version 27.2.3                
#r "nuget: Syncfusion.Xamarin.PresentationRenderer, 27.2.3"                
#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=27.2.3

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

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 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 Web Forms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI, Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI, 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 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

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
27.2.3 40 11/22/2024
27.2.2 81 11/15/2024
27.1.58 82 11/4/2024
27.1.57 93 10/28/2024
27.1.56 79 10/23/2024
27.1.55 78 10/21/2024
27.1.53 113 10/14/2024
27.1.52 84 10/7/2024
27.1.51 91 9/30/2024
27.1.50 83 9/23/2024
27.1.48 108 9/18/2024
26.2.14 105 9/9/2024
26.2.13 116 9/5/2024
26.2.12 100 9/2/2024
26.2.11 94 8/27/2024
26.2.10 129 8/19/2024
26.2.9 129 8/12/2024
26.2.8 95 8/5/2024
26.2.7 60 7/29/2024
26.2.5 87 7/26/2024
26.2.4 84 7/24/2024
26.1.42 109 7/15/2024
26.1.41 99 7/8/2024
26.1.40 112 7/1/2024
26.1.39 99 6/24/2024
26.1.38 113 6/18/2024
26.1.35 113 6/11/2024
25.2.7 124 6/3/2024
25.2.6 99 5/28/2024
25.2.5 103 5/21/2024
25.2.4 78 5/14/2024
25.2.3 138 5/8/2024
25.1.42 114 4/29/2024
25.1.41 115 4/23/2024
25.1.40 127 4/15/2024
25.1.39 99 4/8/2024
25.1.38 132 4/1/2024
25.1.37 119 3/26/2024
25.1.35 152 3/15/2024
24.2.9 129 3/4/2024
24.2.8 130 2/26/2024
24.2.7 115 2/19/2024
24.2.6 114 2/14/2024
24.2.5 111 2/12/2024
24.2.4 123 2/5/2024
24.2.3 129 1/31/2024
24.1.47 113 1/22/2024
24.1.46 127 1/16/2024
24.1.45 141 1/8/2024
24.1.44 132 1/2/2024
24.1.43 127 12/27/2023
24.1.41 974 12/18/2023
23.2.7 200 12/6/2023
23.2.6 170 11/28/2023
23.2.5 160 11/23/2023
23.2.4 152 11/20/2023
23.1.44 179 11/6/2023
23.1.43 165 10/30/2023
23.1.42 171 10/23/2023
23.1.41 184 10/16/2023
23.1.40 184 10/10/2023
23.1.39 175 10/4/2023
23.1.38 524 9/26/2023
23.1.36 213 9/15/2023
22.2.12 200 9/5/2023
22.2.11 217 8/28/2023
22.2.10 177 8/22/2023
22.2.9 207 8/14/2023
22.2.8 183 8/7/2023
22.2.7 169 8/2/2023
22.2.5 232 7/27/2023
22.1.39 200 7/18/2023
22.1.38 189 7/11/2023
22.1.37 219 7/3/2023
22.1.36 219 6/28/2023
22.1.34 190 6/21/2023
21.2.10 229 6/12/2023
21.2.9 187 6/6/2023
21.2.8 235 5/30/2023
21.2.6 227 5/22/2023
21.2.5 264 5/15/2023
21.2.4 255 5/9/2023
21.2.3 280 5/3/2023
21.1.41 258 4/19/2023
21.1.39 298 4/10/2023
21.1.38 311 4/3/2023
21.1.37 291 3/29/2023
21.1.35 390 3/23/2023
20.4.0.54 372 3/13/2023
20.4.0.53 345 3/7/2023
20.4.0.52 364 2/28/2023
20.4.0.51 362 2/21/2023
20.4.0.50 357 2/14/2023
20.4.0.49 2,645 2/7/2023
20.4.0.48 450 2/1/2023
20.4.0.44 438 1/18/2023
20.4.0.43 404 1/10/2023
20.4.0.42 439 1/4/2023
20.4.0.41 407 12/29/2022
20.4.0.40 385 12/28/2022
20.4.0.38 436 12/21/2022
20.3.0.61 421 12/12/2022
20.3.0.60 412 12/6/2022
20.3.0.59 549 11/29/2022
20.3.0.58 457 11/22/2022
20.3.0.57 483 11/15/2022
20.3.0.56 476 11/8/2022
20.3.0.52 503 10/27/2022
20.3.0.50 554 10/18/2022
20.3.0.49 564 10/11/2022
20.3.0.48 489 10/5/2022
20.3.0.47 573 9/29/2022
20.2.0.50 561 9/20/2022
20.2.0.49 559 9/13/2022
20.2.0.48 538 9/6/2022
20.2.0.46 549 8/30/2022
20.2.0.45 562 8/23/2022
20.2.0.44 560 8/16/2022
20.2.0.43 631 8/8/2022
20.2.0.40 564 7/26/2022
20.2.0.39 577 7/19/2022
20.2.0.38 563 7/12/2022
20.2.0.36 652 6/30/2022
20.1.0.61 604 6/20/2022
20.1.0.60 566 6/14/2022
20.1.0.59 544 6/6/2022
20.1.0.58 578 5/31/2022
20.1.0.57 2,094 5/24/2022
20.1.0.56 651 5/17/2022
20.1.0.55 641 5/12/2022
20.1.0.52 619 5/3/2022
20.1.0.51 632 4/26/2022
20.1.0.50 557 4/19/2022
20.1.0.48 549 4/12/2022
20.1.0.47 608 4/4/2022
19.4.0.56 805 3/14/2022
19.4.0.55 718 3/8/2022
19.4.0.54 725 2/28/2022
19.4.0.53 720 2/22/2022
19.4.0.52 733 2/15/2022
19.4.0.50 741 2/8/2022
19.4.0.48 3,500 1/31/2022
19.4.0.47 732 1/25/2022
19.4.0.43 720 1/18/2022
19.4.0.42 628 1/11/2022
19.4.0.41 415 1/4/2022
19.4.0.40 459 12/28/2021
19.4.0.38 513 12/17/2021
19.3.0.59 449 12/14/2021
19.3.0.57 472 12/7/2021
19.3.0.56 1,177 11/29/2021
19.3.0.55 574 11/23/2021
19.3.0.54 467 11/17/2021
19.3.0.53 498 11/12/2021
19.3.0.48 512 11/2/2021
19.3.0.47 509 10/26/2021
19.3.0.46 474 10/19/2021
19.3.0.45 516 10/12/2021
19.3.0.44 517 10/5/2021
19.3.0.43 575 9/30/2021
19.2.0.62 558 9/13/2021
19.2.0.60 509 9/7/2021
19.2.0.59 534 8/30/2021
19.2.0.57 579 8/24/2021
19.2.0.56 543 8/17/2021
19.2.0.55 601 8/11/2021
19.2.0.51 1,180 8/2/2021
19.2.0.49 518 7/26/2021
19.2.0.48 515 7/19/2021
19.2.0.47 567 7/13/2021
19.2.0.46 549 7/6/2021
19.2.0.44 1,188 6/30/2021
19.1.0.69 1,164 6/14/2021
19.1.0.67 559 6/7/2021
19.1.0.66 551 5/31/2021
19.1.0.65 548 5/24/2021
19.1.0.64 716 5/19/2021
19.1.0.63 634 5/13/2021
19.1.0.59 546 5/3/2021
19.1.0.58 529 4/26/2021
19.1.0.57 557 4/20/2021
19.1.0.56 531 4/13/2021
19.1.0.55 565 4/6/2021
19.1.0.54 1,156 3/30/2021
18.4.0.49 574 3/22/2021
18.4.0.48 511 3/16/2021
18.4.0.47 563 3/9/2021
18.4.0.46 529 3/2/2021
18.4.0.44 590 2/23/2021
18.4.0.43 654 2/15/2021
18.4.0.42 582 2/9/2021
18.4.0.41 44,497 2/2/2021
18.4.0.39 737 1/28/2021
18.4.0.35 3,789 1/19/2021
18.4.0.34 526 1/12/2021
18.4.0.33 593 1/4/2021
18.4.0.32 596 12/30/2020
18.4.0.31 542 12/22/2020
18.4.0.30 724 12/17/2020
18.3.0.53 648 12/8/2020
18.3.0.52 774 11/30/2020
18.3.0.51 603 11/23/2020
18.3.0.50 611 11/17/2020
18.3.0.48 595 11/10/2020
18.3.0.47 961 11/5/2020
18.3.0.44 796 10/27/2020
18.3.0.42 671 10/20/2020
18.3.0.40 903 10/12/2020
18.3.0.38 688 10/7/2020
18.3.0.35 714 10/1/2020
18.2.0.59 604 9/22/2020
18.2.0.58 671 9/15/2020
18.2.0.57 579 9/8/2020
18.2.0.56 585 9/1/2020
18.2.0.55 653 8/25/2020
18.2.0.54 616 8/18/2020
18.2.0.48 786 8/4/2020
18.2.0.47 663 7/28/2020
18.2.0.46 606 7/21/2020
18.2.0.45 677 7/14/2020
18.2.0.44 920 7/6/2020
18.1.0.59 678 6/23/2020
18.1.0.57 632 6/16/2020
18.1.0.56 668 6/9/2020
18.1.0.55 647 6/2/2020
18.1.0.54 666 5/27/2020
18.1.0.53 697 5/19/2020
18.1.0.52 839 5/13/2020
18.1.0.48 700 5/5/2020
18.1.0.46 690 4/28/2020
18.1.0.45 681 4/21/2020
18.1.0.44 712 4/14/2020
18.1.0.43 729 4/7/2020
18.1.0.42 874 4/1/2020
18.1.0.36-beta 433 3/19/2020
17.4.0.55 874 3/10/2020
17.4.0.53 800 3/3/2020
17.4.0.51 1,907 2/25/2020
17.4.0.50 710 2/18/2020
17.4.0.49 719 2/11/2020
17.4.0.47 672 2/5/2020
17.4.0.46 680 1/30/2020
17.4.0.44 683 1/21/2020
17.4.0.43 725 1/14/2020
17.4.0.41 713 1/7/2020
17.4.0.40 736 12/24/2019
17.4.0.39 1,057 12/17/2019
17.3.0.34 704 12/10/2019
17.3.0.33 669 12/4/2019
17.3.0.30 698 12/3/2019
17.3.0.29 754 11/26/2019
17.3.0.28 719 11/19/2019
17.3.0.27 702 11/12/2019
17.3.0.26 752 11/5/2019
17.3.0.21 773 10/29/2019
17.3.0.19 725 10/22/2019
17.3.0.17 772 10/15/2019
17.3.0.14 1,002 10/3/2019
17.3.0.9-beta 515 9/20/2019
17.2.0.51 900 9/10/2019
17.2.0.49 735 9/3/2019
17.2.0.47 751 8/27/2019
17.2.0.46 874 8/22/2019
17.2.0.41 764 8/13/2019
17.2.0.40 829 8/6/2019
17.2.0.39 803 7/30/2019
17.2.0.36 770 7/23/2019
17.2.0.35 762 7/17/2019
17.2.0.34 971 7/11/2019
17.2.0.28-beta 513 6/27/2019
17.1.0.53 797 6/25/2019
17.1.0.52 764 6/18/2019
17.1.0.51 797 6/11/2019
17.1.0.50 792 6/4/2019
17.1.0.49 769 5/28/2019
17.1.0.48 790 5/21/2019
17.1.0.47 1,025 5/14/2019
17.1.0.44 882 5/7/2019
17.1.0.43 908 4/30/2019
17.1.0.42 975 4/23/2019
17.1.0.41 915 4/16/2019
17.1.0.40 946 4/9/2019
17.1.0.38 1,029 3/29/2019
17.1.0.32-beta 621 3/13/2019