Syncfusion.Xamarin.PresentationRenderer 27.2.3

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 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.
<PackageVersion Include="Syncfusion.Xamarin.PresentationRenderer" Version="27.2.3" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Xamarin.PresentationRenderer" />
                    
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.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.
#addin nuget:?package=Syncfusion.Xamarin.PresentationRenderer&version=27.2.3
                    
Install Syncfusion.Xamarin.PresentationRenderer as a Cake Addin
#tool nuget:?package=Syncfusion.Xamarin.PresentationRenderer&version=27.2.3
                    
Install Syncfusion.Xamarin.PresentationRenderer as a Cake Tool

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.  net9.0 was computed.  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

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
29.2.7 104 5/26/2025
29.2.5 127 5/21/2025
29.2.4 215 5/14/2025
29.1.41 133 5/5/2025
29.1.40 151 4/28/2025
29.1.39 156 4/21/2025
29.1.38 188 4/14/2025
29.1.37 160 4/8/2025
29.1.35 167 4/1/2025
29.1.33 495 3/25/2025
28.2.12 151 3/19/2025
28.2.11 165 3/10/2025
28.2.9 215 3/4/2025
28.2.7 106 2/25/2025
28.2.6 117 2/17/2025
28.2.5 113 2/11/2025
28.2.4 106 2/4/2025
28.2.3 116 1/29/2025
28.1.41 104 1/20/2025
28.1.39 98 1/13/2025
28.1.38 116 1/7/2025
28.1.37 109 12/31/2024
28.1.36 106 12/23/2024
28.1.35 111 12/18/2024
28.1.33 127 12/12/2024
27.2.5 116 12/2/2024
27.2.4 112 11/26/2024
27.2.3 109 11/22/2024
27.2.2 120 11/15/2024
27.1.58 113 11/4/2024
27.1.57 121 10/28/2024
27.1.56 106 10/23/2024
27.1.55 109 10/21/2024
27.1.53 138 10/14/2024
27.1.52 107 10/7/2024
27.1.51 119 9/30/2024
27.1.50 106 9/23/2024
27.1.48 131 9/18/2024
26.2.14 133 9/9/2024
26.2.13 144 9/5/2024
26.2.12 127 9/2/2024
26.2.11 117 8/27/2024
26.2.10 154 8/19/2024
26.2.9 153 8/12/2024
26.2.8 117 8/5/2024
26.2.7 82 7/29/2024
26.2.5 111 7/26/2024
26.2.4 107 7/24/2024
26.1.42 133 7/15/2024
26.1.41 123 7/8/2024
26.1.40 135 7/1/2024
26.1.39 126 6/24/2024
26.1.38 138 6/18/2024
26.1.35 136 6/11/2024
25.2.7 147 6/3/2024
25.2.6 120 5/28/2024
25.2.5 122 5/21/2024
25.2.4 99 5/14/2024
25.2.3 158 5/8/2024
25.1.42 134 4/29/2024
25.1.41 139 4/23/2024
25.1.40 148 4/15/2024
25.1.39 120 4/8/2024
25.1.38 151 4/1/2024
25.1.37 139 3/26/2024
25.1.35 562 3/15/2024
24.2.9 148 3/4/2024
24.2.8 151 2/26/2024
24.2.7 140 2/19/2024
24.2.6 136 2/14/2024
24.2.5 130 2/12/2024
24.2.4 142 2/5/2024
24.2.3 149 1/31/2024
24.1.47 134 1/22/2024
24.1.46 146 1/16/2024
24.1.45 160 1/8/2024
24.1.44 153 1/2/2024
24.1.43 145 12/27/2023
24.1.41 2,570 12/18/2023
23.2.7 211 12/6/2023
23.2.6 182 11/28/2023
23.2.5 170 11/23/2023
23.2.4 162 11/20/2023
23.1.44 190 11/6/2023
23.1.43 175 10/30/2023
23.1.42 182 10/23/2023
23.1.41 196 10/16/2023
23.1.40 195 10/10/2023
23.1.39 185 10/4/2023
23.1.38 534 9/26/2023
23.1.36 224 9/15/2023
22.2.12 216 9/5/2023
22.2.11 231 8/28/2023
22.2.10 191 8/22/2023
22.2.9 221 8/14/2023
22.2.8 199 8/7/2023
22.2.7 184 8/2/2023
22.2.5 247 7/27/2023
22.1.39 216 7/18/2023
22.1.38 205 7/11/2023
22.1.37 235 7/3/2023
22.1.36 235 6/28/2023
22.1.34 210 6/21/2023
21.2.10 252 6/12/2023
21.2.9 211 6/6/2023
21.2.8 259 5/30/2023
21.2.6 257 5/22/2023
21.2.5 290 5/15/2023
21.2.4 280 5/9/2023
21.2.3 306 5/3/2023
21.1.41 284 4/19/2023
21.1.39 323 4/10/2023
21.1.38 336 4/3/2023
21.1.37 317 3/29/2023
21.1.35 420 3/23/2023
20.4.0.54 404 3/13/2023
20.4.0.53 370 3/7/2023
20.4.0.52 389 2/28/2023
20.4.0.51 389 2/21/2023
20.4.0.50 381 2/14/2023
20.4.0.49 2,673 2/7/2023
20.4.0.48 478 2/1/2023
20.4.0.44 465 1/18/2023
20.4.0.43 432 1/10/2023
20.4.0.42 467 1/4/2023
20.4.0.41 435 12/29/2022
20.4.0.40 413 12/28/2022
20.4.0.38 464 12/21/2022
20.3.0.61 449 12/12/2022
20.3.0.60 438 12/6/2022
20.3.0.59 578 11/29/2022
20.3.0.58 492 11/22/2022
20.3.0.57 513 11/15/2022
20.3.0.56 506 11/8/2022
20.3.0.52 535 10/27/2022
20.3.0.50 587 10/18/2022
20.3.0.49 597 10/11/2022
20.3.0.48 521 10/5/2022
20.3.0.47 605 9/29/2022
20.2.0.50 592 9/20/2022
20.2.0.49 591 9/13/2022
20.2.0.48 570 9/6/2022
20.2.0.46 581 8/30/2022
20.2.0.45 592 8/23/2022
20.2.0.44 596 8/16/2022
20.2.0.43 662 8/8/2022
20.2.0.40 598 7/26/2022
20.2.0.39 611 7/19/2022
20.2.0.38 596 7/12/2022
20.2.0.36 685 6/30/2022
20.1.0.61 639 6/20/2022
20.1.0.60 599 6/14/2022
20.1.0.59 579 6/6/2022
20.1.0.58 612 5/31/2022
20.1.0.57 2,129 5/24/2022
20.1.0.56 684 5/17/2022
20.1.0.55 675 5/12/2022
20.1.0.52 655 5/3/2022
20.1.0.51 669 4/26/2022
20.1.0.50 595 4/19/2022
20.1.0.48 587 4/12/2022
20.1.0.47 647 4/4/2022
19.4.0.56 843 3/14/2022
19.4.0.55 758 3/8/2022
19.4.0.54 765 2/28/2022
19.4.0.53 760 2/22/2022
19.4.0.52 778 2/15/2022
19.4.0.50 783 2/8/2022
19.4.0.48 3,547 1/31/2022
19.4.0.47 775 1/25/2022
19.4.0.43 762 1/18/2022
19.4.0.42 670 1/11/2022
19.4.0.41 457 1/4/2022
19.4.0.40 502 12/28/2021
19.4.0.38 555 12/17/2021
19.3.0.59 490 12/14/2021
19.3.0.57 513 12/7/2021
19.3.0.56 1,219 11/29/2021
19.3.0.55 624 11/23/2021
19.3.0.54 509 11/17/2021
19.3.0.53 540 11/12/2021
19.3.0.48 554 11/2/2021
19.3.0.47 551 10/26/2021
19.3.0.46 517 10/19/2021
19.3.0.45 559 10/12/2021
19.3.0.44 559 10/5/2021
19.3.0.43 618 9/30/2021
19.2.0.62 600 9/13/2021
19.2.0.60 551 9/7/2021
19.2.0.59 577 8/30/2021
19.2.0.57 623 8/24/2021
19.2.0.56 586 8/17/2021
19.2.0.55 644 8/11/2021
19.2.0.51 1,225 8/2/2021
19.2.0.49 560 7/26/2021
19.2.0.48 556 7/19/2021
19.2.0.47 609 7/13/2021
19.2.0.46 592 7/6/2021
19.2.0.44 1,235 6/30/2021
19.1.0.69 1,206 6/14/2021
19.1.0.67 602 6/7/2021
19.1.0.66 593 5/31/2021
19.1.0.65 590 5/24/2021
19.1.0.64 757 5/19/2021
19.1.0.63 677 5/13/2021
19.1.0.59 592 5/3/2021
19.1.0.58 576 4/26/2021
19.1.0.57 603 4/20/2021
19.1.0.56 578 4/13/2021
19.1.0.55 615 4/6/2021
19.1.0.54 1,205 3/30/2021
18.4.0.49 621 3/22/2021
18.4.0.48 560 3/16/2021
18.4.0.47 617 3/9/2021
18.4.0.46 587 3/2/2021
18.4.0.44 644 2/23/2021
18.4.0.43 704 2/15/2021
18.4.0.42 633 2/9/2021
18.4.0.41 44,549 2/2/2021
18.4.0.39 789 1/28/2021
18.4.0.35 3,840 1/19/2021
18.4.0.34 578 1/12/2021
18.4.0.33 646 1/4/2021
18.4.0.32 652 12/30/2020
18.4.0.31 594 12/22/2020
18.4.0.30 779 12/17/2020
18.3.0.53 705 12/8/2020
18.3.0.52 826 11/30/2020
18.3.0.51 658 11/23/2020
18.3.0.50 662 11/17/2020
18.3.0.48 647 11/10/2020
18.3.0.47 1,014 11/5/2020
18.3.0.44 849 10/27/2020
18.3.0.42 723 10/20/2020
18.3.0.40 956 10/12/2020
18.3.0.38 739 10/7/2020
18.3.0.35 765 10/1/2020
18.2.0.59 656 9/22/2020
18.2.0.58 723 9/15/2020
18.2.0.57 630 9/8/2020
18.2.0.56 638 9/1/2020
18.2.0.55 705 8/25/2020
18.2.0.54 667 8/18/2020
18.2.0.48 838 8/4/2020
18.2.0.47 714 7/28/2020
18.2.0.46 658 7/21/2020
18.2.0.45 730 7/14/2020
18.2.0.44 972 7/6/2020
18.1.0.59 729 6/23/2020
18.1.0.57 686 6/16/2020
18.1.0.56 719 6/9/2020
18.1.0.55 703 6/2/2020
18.1.0.54 719 5/27/2020
18.1.0.53 751 5/19/2020
18.1.0.52 893 5/13/2020
18.1.0.48 755 5/5/2020
18.1.0.46 745 4/28/2020
18.1.0.45 737 4/21/2020
18.1.0.44 767 4/14/2020
18.1.0.43 783 4/7/2020
18.1.0.42 927 4/1/2020
18.1.0.36-beta 477 3/19/2020
17.4.0.55 927 3/10/2020
17.4.0.53 853 3/3/2020
17.4.0.51 1,959 2/25/2020
17.4.0.50 761 2/18/2020
17.4.0.49 770 2/11/2020
17.4.0.47 724 2/5/2020
17.4.0.46 731 1/30/2020
17.4.0.44 734 1/21/2020
17.4.0.43 778 1/14/2020
17.4.0.41 765 1/7/2020
17.4.0.40 788 12/24/2019
17.4.0.39 1,109 12/17/2019
17.3.0.34 755 12/10/2019
17.3.0.33 720 12/4/2019
17.3.0.30 752 12/3/2019
17.3.0.29 806 11/26/2019
17.3.0.28 774 11/19/2019
17.3.0.27 754 11/12/2019
17.3.0.26 805 11/5/2019
17.3.0.21 826 10/29/2019
17.3.0.19 779 10/22/2019
17.3.0.17 826 10/15/2019
17.3.0.14 1,061 10/3/2019
17.3.0.9-beta 563 9/20/2019
17.2.0.51 954 9/10/2019
17.2.0.49 790 9/3/2019
17.2.0.47 806 8/27/2019
17.2.0.46 930 8/22/2019
17.2.0.41 820 8/13/2019
17.2.0.40 884 8/6/2019
17.2.0.39 859 7/30/2019
17.2.0.36 828 7/23/2019
17.2.0.35 818 7/17/2019
17.2.0.34 1,029 7/11/2019
17.2.0.28-beta 562 6/27/2019
17.1.0.53 854 6/25/2019
17.1.0.52 821 6/18/2019
17.1.0.51 852 6/11/2019
17.1.0.50 847 6/4/2019
17.1.0.49 822 5/28/2019
17.1.0.48 847 5/21/2019
17.1.0.47 1,127 5/14/2019
17.1.0.44 983 5/7/2019
17.1.0.43 1,007 4/30/2019
17.1.0.42 1,075 4/23/2019
17.1.0.41 1,015 4/16/2019
17.1.0.40 1,046 4/9/2019
17.1.0.38 1,135 3/29/2019
17.1.0.32-beta 717 3/13/2019