Syncfusion.PresentationRenderer.NET 20.1.0.59

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

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

Syncfusion .NET PowerPoint to PDF converter library

The Syncfusion .NET Core 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.

.NET PowerPoint to PDF Library

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 Core PowerPoint library NuGet by simply running the command Install-Package Syncfusion.PresentationRenderer.NET 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 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.PresentationRenderer.NET:

Repository Stars
syncfusion/maui-demos
This repository contains the Syncfusion .NET MAUI control’s samples and the guide to use them
Version Downloads Last updated
25.1.37 73 3/26/2024
25.1.35 110 3/15/2024
24.2.9 129 3/4/2024
24.2.8 113 2/26/2024
24.2.7 230 2/19/2024
24.2.6 121 2/14/2024
24.2.5 87 2/12/2024
24.2.4 75 2/6/2024
24.2.3 95 1/31/2024
24.1.47 89 1/22/2024
24.1.46 108 1/16/2024
24.1.45 120 1/9/2024
24.1.44 114 1/3/2024
24.1.43 211 12/27/2023
24.1.41 116 12/18/2023
23.2.7 176 12/6/2023
23.2.6 122 11/28/2023
23.2.5 122 11/23/2023
23.2.4 117 11/20/2023
23.1.44 464 11/6/2023
23.1.43 136 10/30/2023
23.1.42 154 10/23/2023
23.1.41 165 10/16/2023
23.1.40 161 10/10/2023
23.1.39 118 10/4/2023
23.1.38 138 9/26/2023
23.1.36 228 9/15/2023
22.2.12 145 9/5/2023
22.2.11 171 8/28/2023
22.2.10 113 8/22/2023
22.2.9 145 8/14/2023
22.2.8 149 8/7/2023
22.2.7 159 8/2/2023
22.2.5 175 7/27/2023
22.1.39 140 7/18/2023
22.1.38 145 7/11/2023
22.1.37 165 7/3/2023
22.1.36 166 6/28/2023
22.1.34 165 6/21/2023
21.2.10 161 6/13/2023
21.2.9 138 6/6/2023
21.2.8 162 5/30/2023
21.2.6 154 5/22/2023
21.2.5 176 5/15/2023
21.2.4 228 5/9/2023
21.2.3 316 5/3/2023
21.1.41 198 4/19/2023
21.1.39 220 4/10/2023
21.1.38 247 4/3/2023
21.1.37 269 3/29/2023
21.1.35 471 3/23/2023
20.4.0.54 288 3/13/2023
20.4.0.53 272 3/7/2023
20.4.0.52 280 2/28/2023
20.4.0.51 263 2/21/2023
20.4.0.50 251 2/14/2023
20.4.0.49 251 2/7/2023
20.4.0.48 331 2/1/2023
20.4.0.44 380 1/18/2023
20.4.0.43 377 1/10/2023
20.4.0.42 320 1/4/2023
20.4.0.41 402 12/29/2022
20.4.0.40 298 12/28/2022
20.4.0.38 467 12/21/2022
20.3.0.61 325 12/13/2022
20.3.0.60 318 12/6/2022
20.3.0.59 319 11/29/2022
20.3.0.58 318 11/22/2022
20.3.0.57 354 11/15/2022
20.3.0.56 405 11/8/2022
20.3.0.52 210 10/27/2022
20.3.0.50 132 10/18/2022
20.3.0.49 143 10/11/2022
20.3.0.48 102 10/5/2022
20.3.0.47 157 9/29/2022
20.2.0.50 157 9/20/2022
20.2.0.49 140 9/13/2022
20.2.0.48 133 9/6/2022
20.2.0.46 128 8/30/2022
20.2.0.45 131 8/23/2022
20.2.0.44 132 8/16/2022
20.2.0.43 142 8/8/2022
20.2.0.40 262 7/26/2022
20.2.0.39 145 7/19/2022
20.2.0.38 136 7/12/2022
20.2.0.36 267 6/30/2022
20.1.0.61 144 6/21/2022
20.1.0.60 129 6/14/2022
20.1.0.59 138 6/7/2022
20.1.0.58 450 5/31/2022
20.1.0.57 163 5/24/2022
20.1.0.56 144 5/17/2022
20.1.0.55 296 5/12/2022
20.1.0.52 195 5/3/2022
20.1.0.51 161 4/26/2022
20.1.0.50 200 4/19/2022
20.1.0.48 158 4/12/2022
20.1.0.47 312 4/4/2022
19.4.0.56 172 3/15/2022
19.4.0.55 152 3/8/2022
19.4.0.54 161 3/1/2022
19.4.0.53 267 2/22/2022
19.4.0.52 138 2/15/2022
19.4.0.50 135 2/8/2022
19.4.0.48 236 1/31/2022
19.4.0.47 156 1/25/2022
19.4.0.43 168 1/18/2022
19.4.0.42 159 1/11/2022
19.4.0.41 162 1/4/2022
19.4.0.40 155 12/28/2021
19.4.0.38 449 12/17/2021