Syncfusion.Xamarin.PresentationRenderer 28.1.35

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

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

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® licensed software, including this component, is subject to the terms and conditions of Syncfusion® 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
28.1.35 41 12/18/2024
28.1.33 83 12/12/2024
27.2.5 89 12/2/2024
27.2.4 86 11/26/2024
27.2.3 84 11/22/2024
27.2.2 97 11/15/2024
27.1.58 86 11/4/2024
27.1.57 100 10/28/2024
27.1.56 84 10/23/2024
27.1.55 86 10/21/2024
27.1.53 117 10/14/2024
27.1.52 88 10/7/2024
27.1.51 99 9/30/2024
27.1.50 87 9/23/2024
27.1.48 112 9/18/2024
26.2.14 113 9/9/2024
26.2.13 125 9/5/2024
26.2.12 107 9/2/2024
26.2.11 98 8/27/2024
26.2.10 135 8/19/2024
26.2.9 135 8/12/2024
26.2.8 99 8/5/2024
26.2.7 64 7/29/2024
26.2.5 95 7/26/2024
26.2.4 88 7/24/2024
26.1.42 114 7/15/2024
26.1.41 105 7/8/2024
26.1.40 116 7/1/2024
26.1.39 109 6/24/2024
26.1.38 118 6/18/2024
26.1.35 119 6/11/2024
25.2.7 130 6/3/2024
25.2.6 103 5/28/2024
25.2.5 107 5/21/2024
25.2.4 84 5/14/2024
25.2.3 142 5/8/2024
25.1.42 118 4/29/2024
25.1.41 117 4/23/2024
25.1.40 131 4/15/2024
25.1.39 103 4/8/2024
25.1.38 134 4/1/2024
25.1.37 121 3/26/2024
25.1.35 155 3/15/2024
24.2.9 131 3/4/2024
24.2.8 132 2/26/2024
24.2.7 117 2/19/2024
24.2.6 116 2/14/2024
24.2.5 113 2/12/2024
24.2.4 125 2/5/2024
24.2.3 131 1/31/2024
24.1.47 115 1/22/2024
24.1.46 129 1/16/2024
24.1.45 143 1/8/2024
24.1.44 134 1/2/2024
24.1.43 129 12/27/2023
24.1.41 1,194 12/18/2023
23.2.7 202 12/6/2023
23.2.6 174 11/28/2023
23.2.5 162 11/23/2023
23.2.4 154 11/20/2023
23.1.44 181 11/6/2023
23.1.43 167 10/30/2023
23.1.42 173 10/23/2023
23.1.41 186 10/16/2023
23.1.40 186 10/10/2023
23.1.39 177 10/4/2023
23.1.38 526 9/26/2023
23.1.36 215 9/15/2023
22.2.12 204 9/5/2023
22.2.11 219 8/28/2023
22.2.10 179 8/22/2023
22.2.9 209 8/14/2023
22.2.8 185 8/7/2023
22.2.7 171 8/2/2023
22.2.5 234 7/27/2023
22.1.39 202 7/18/2023
22.1.38 191 7/11/2023
22.1.37 221 7/3/2023
22.1.36 221 6/28/2023
22.1.34 192 6/21/2023
21.2.10 231 6/12/2023
21.2.9 189 6/6/2023
21.2.8 239 5/30/2023
21.2.6 229 5/22/2023
21.2.5 266 5/15/2023
21.2.4 257 5/9/2023
21.2.3 282 5/3/2023
21.1.41 260 4/19/2023
21.1.39 300 4/10/2023
21.1.38 315 4/3/2023
21.1.37 293 3/29/2023
21.1.35 396 3/23/2023
20.4.0.54 376 3/13/2023
20.4.0.53 347 3/7/2023
20.4.0.52 368 2/28/2023
20.4.0.51 364 2/21/2023
20.4.0.50 359 2/14/2023
20.4.0.49 2,649 2/7/2023
20.4.0.48 454 2/1/2023
20.4.0.44 440 1/18/2023
20.4.0.43 406 1/10/2023
20.4.0.42 441 1/4/2023
20.4.0.41 409 12/29/2022
20.4.0.40 387 12/28/2022
20.4.0.38 438 12/21/2022
20.3.0.61 425 12/12/2022
20.3.0.60 414 12/6/2022
20.3.0.59 553 11/29/2022
20.3.0.58 459 11/22/2022
20.3.0.57 485 11/15/2022
20.3.0.56 478 11/8/2022
20.3.0.52 507 10/27/2022
20.3.0.50 558 10/18/2022
20.3.0.49 570 10/11/2022
20.3.0.48 493 10/5/2022
20.3.0.47 577 9/29/2022
20.2.0.50 565 9/20/2022
20.2.0.49 561 9/13/2022
20.2.0.48 540 9/6/2022
20.2.0.46 553 8/30/2022
20.2.0.45 564 8/23/2022
20.2.0.44 562 8/16/2022
20.2.0.43 633 8/8/2022
20.2.0.40 568 7/26/2022
20.2.0.39 579 7/19/2022
20.2.0.38 565 7/12/2022
20.2.0.36 656 6/30/2022
20.1.0.61 610 6/20/2022
20.1.0.60 568 6/14/2022
20.1.0.59 550 6/6/2022
20.1.0.58 580 5/31/2022
20.1.0.57 2,096 5/24/2022
20.1.0.56 653 5/17/2022
20.1.0.55 643 5/12/2022
20.1.0.52 623 5/3/2022
20.1.0.51 634 4/26/2022
20.1.0.50 559 4/19/2022
20.1.0.48 551 4/12/2022
20.1.0.47 610 4/4/2022
19.4.0.56 807 3/14/2022
19.4.0.55 720 3/8/2022
19.4.0.54 727 2/28/2022
19.4.0.53 722 2/22/2022
19.4.0.52 735 2/15/2022
19.4.0.50 743 2/8/2022
19.4.0.48 3,502 1/31/2022
19.4.0.47 734 1/25/2022
19.4.0.43 722 1/18/2022
19.4.0.42 630 1/11/2022
19.4.0.41 417 1/4/2022
19.4.0.40 463 12/28/2021
19.4.0.38 515 12/17/2021
19.3.0.59 451 12/14/2021
19.3.0.57 474 12/7/2021
19.3.0.56 1,179 11/29/2021
19.3.0.55 576 11/23/2021
19.3.0.54 469 11/17/2021
19.3.0.53 500 11/12/2021
19.3.0.48 514 11/2/2021
19.3.0.47 511 10/26/2021
19.3.0.46 476 10/19/2021
19.3.0.45 518 10/12/2021
19.3.0.44 519 10/5/2021
19.3.0.43 577 9/30/2021
19.2.0.62 560 9/13/2021
19.2.0.60 511 9/7/2021
19.2.0.59 536 8/30/2021
19.2.0.57 581 8/24/2021
19.2.0.56 547 8/17/2021
19.2.0.55 603 8/11/2021
19.2.0.51 1,184 8/2/2021
19.2.0.49 520 7/26/2021
19.2.0.48 517 7/19/2021
19.2.0.47 569 7/13/2021
19.2.0.46 553 7/6/2021
19.2.0.44 1,190 6/30/2021
19.1.0.69 1,166 6/14/2021
19.1.0.67 561 6/7/2021
19.1.0.66 553 5/31/2021
19.1.0.65 550 5/24/2021
19.1.0.64 718 5/19/2021
19.1.0.63 636 5/13/2021
19.1.0.59 548 5/3/2021
19.1.0.58 531 4/26/2021
19.1.0.57 559 4/20/2021
19.1.0.56 533 4/13/2021
19.1.0.55 567 4/6/2021
19.1.0.54 1,162 3/30/2021
18.4.0.49 578 3/22/2021
18.4.0.48 513 3/16/2021
18.4.0.47 568 3/9/2021
18.4.0.46 531 3/2/2021
18.4.0.44 596 2/23/2021
18.4.0.43 656 2/15/2021
18.4.0.42 586 2/9/2021
18.4.0.41 44,499 2/2/2021
18.4.0.39 741 1/28/2021
18.4.0.35 3,791 1/19/2021
18.4.0.34 528 1/12/2021
18.4.0.33 595 1/4/2021
18.4.0.32 602 12/30/2020
18.4.0.31 544 12/22/2020
18.4.0.30 727 12/17/2020
18.3.0.53 650 12/8/2020
18.3.0.52 776 11/30/2020
18.3.0.51 611 11/23/2020
18.3.0.50 615 11/17/2020
18.3.0.48 597 11/10/2020
18.3.0.47 965 11/5/2020
18.3.0.44 799 10/27/2020
18.3.0.42 673 10/20/2020
18.3.0.40 907 10/12/2020
18.3.0.38 690 10/7/2020
18.3.0.35 716 10/1/2020
18.2.0.59 606 9/22/2020
18.2.0.58 673 9/15/2020
18.2.0.57 581 9/8/2020
18.2.0.56 587 9/1/2020
18.2.0.55 655 8/25/2020
18.2.0.54 618 8/18/2020
18.2.0.48 790 8/4/2020
18.2.0.47 667 7/28/2020
18.2.0.46 608 7/21/2020
18.2.0.45 679 7/14/2020
18.2.0.44 924 7/6/2020
18.1.0.59 680 6/23/2020
18.1.0.57 634 6/16/2020
18.1.0.56 670 6/9/2020
18.1.0.55 649 6/2/2020
18.1.0.54 668 5/27/2020
18.1.0.53 699 5/19/2020
18.1.0.52 841 5/13/2020
18.1.0.48 702 5/5/2020
18.1.0.46 695 4/28/2020
18.1.0.45 685 4/21/2020
18.1.0.44 716 4/14/2020
18.1.0.43 733 4/7/2020
18.1.0.42 878 4/1/2020
18.1.0.36-beta 433 3/19/2020
17.4.0.55 878 3/10/2020
17.4.0.53 804 3/3/2020
17.4.0.51 1,911 2/25/2020
17.4.0.50 714 2/18/2020
17.4.0.49 723 2/11/2020
17.4.0.47 676 2/5/2020
17.4.0.46 684 1/30/2020
17.4.0.44 687 1/21/2020
17.4.0.43 729 1/14/2020
17.4.0.41 717 1/7/2020
17.4.0.40 740 12/24/2019
17.4.0.39 1,061 12/17/2019
17.3.0.34 708 12/10/2019
17.3.0.33 673 12/4/2019
17.3.0.30 704 12/3/2019
17.3.0.29 758 11/26/2019
17.3.0.28 723 11/19/2019
17.3.0.27 706 11/12/2019
17.3.0.26 756 11/5/2019
17.3.0.21 777 10/29/2019
17.3.0.19 729 10/22/2019
17.3.0.17 776 10/15/2019
17.3.0.14 1,006 10/3/2019
17.3.0.9-beta 515 9/20/2019
17.2.0.51 905 9/10/2019
17.2.0.49 739 9/3/2019
17.2.0.47 755 8/27/2019
17.2.0.46 878 8/22/2019
17.2.0.41 768 8/13/2019
17.2.0.40 833 8/6/2019
17.2.0.39 807 7/30/2019
17.2.0.36 774 7/23/2019
17.2.0.35 766 7/17/2019
17.2.0.34 977 7/11/2019
17.2.0.28-beta 513 6/27/2019
17.1.0.53 801 6/25/2019
17.1.0.52 770 6/18/2019
17.1.0.51 801 6/11/2019
17.1.0.50 796 6/4/2019
17.1.0.49 773 5/28/2019
17.1.0.48 794 5/21/2019
17.1.0.47 1,030 5/14/2019
17.1.0.44 886 5/7/2019
17.1.0.43 911 4/30/2019
17.1.0.42 979 4/23/2019
17.1.0.41 919 4/16/2019
17.1.0.40 950 4/9/2019
17.1.0.38 1,034 3/29/2019
17.1.0.32-beta 621 3/13/2019