Syncfusion.PresentationRenderer.NET 20.3.0.56

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.3.0.56
                    
NuGet\Install-Package Syncfusion.PresentationRenderer.NET -Version 20.3.0.56
                    
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.3.0.56" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.PresentationRenderer.NET" Version="20.3.0.56" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.PresentationRenderer.NET" />
                    
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.PresentationRenderer.NET --version 20.3.0.56
                    
#r "nuget: Syncfusion.PresentationRenderer.NET, 20.3.0.56"
                    
#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.PresentationRenderer.NET&version=20.3.0.56
                    
Install Syncfusion.PresentationRenderer.NET as a Cake Addin
#tool nuget:?package=Syncfusion.PresentationRenderer.NET&version=20.3.0.56
                    
Install Syncfusion.PresentationRenderer.NET as a Cake Tool

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 is compatible.  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.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
29.2.7 51 2 days ago
29.2.5 152 8 days ago
29.2.4 310 15 days ago
29.1.41 234 23 days ago
29.1.40 204 a month ago
29.1.39 180 a month ago
29.1.38 244 a month ago
29.1.37 171 2 months ago
29.1.35 197 2 months ago
29.1.33 567 2 months ago
28.2.12 180 2 months ago
28.2.11 212 3 months ago
28.2.9 253 3 months ago
28.2.7 152 3 months ago
28.2.6 149 3 months ago
28.2.5 221 4 months ago
28.2.4 1,853 4 months ago
28.2.3 134 4 months ago
28.1.41 271 4 months ago
28.1.39 99 5 months ago
28.1.38 108 5 months ago
28.1.37 131 5 months ago
28.1.36 112 5 months ago
28.1.35 957 5 months ago
28.1.33 251 6 months ago
27.2.5 187 6 months ago
27.2.4 142 6 months ago
27.2.3 219 6 months ago
27.2.2 155 6 months ago
27.1.58 363 7 months ago
27.1.57 137 7 months ago
27.1.56 135 7 months ago
27.1.55 120 7 months ago
27.1.53 374 7 months ago
27.1.52 124 8 months ago
27.1.51 158 8 months ago
27.1.50 218 8 months ago
27.1.48 183 8 months ago
26.2.14 336 9 months ago
26.2.13 1,708 9 months ago
26.2.12 475 9 months ago
26.2.11 390 9 months ago
26.2.10 164 9 months ago
26.2.9 187 10 months ago
26.2.8 2,212 10 months ago
26.2.7 658 10 months ago
26.2.5 400 7/26/2024
26.2.4 171 7/24/2024
26.1.42 369 7/15/2024
26.1.41 254 7/8/2024
26.1.40 183 7/1/2024
26.1.39 144 6/24/2024
26.1.38 142 6/18/2024
26.1.35 253 6/11/2024
25.2.7 141 6/3/2024
25.2.6 186 5/28/2024
25.2.5 138 5/21/2024
25.2.4 193 5/14/2024
25.2.3 145 5/8/2024
25.1.42 136 4/29/2024
25.1.41 161 4/23/2024
25.1.40 179 4/15/2024
25.1.39 135 4/8/2024
25.1.38 162 4/1/2024
25.1.37 184 3/26/2024
25.1.35 559 3/15/2024
24.2.9 730 3/4/2024
24.2.8 165 2/26/2024
24.2.7 314 2/19/2024
24.2.6 173 2/14/2024
24.2.5 141 2/12/2024
24.2.4 125 2/6/2024
24.2.3 163 1/31/2024
24.1.47 380 1/22/2024
24.1.46 170 1/16/2024
24.1.45 174 1/9/2024
24.1.44 161 1/3/2024
24.1.43 270 12/27/2023
24.1.41 181 12/18/2023
23.2.7 274 12/6/2023
23.2.6 168 11/28/2023
23.2.5 151 11/23/2023
23.2.4 160 11/20/2023
23.1.44 513 11/6/2023
23.1.43 180 10/30/2023
23.1.42 196 10/23/2023
23.1.41 209 10/16/2023
23.1.40 205 10/10/2023
23.1.39 151 10/4/2023
23.1.38 187 9/26/2023
23.1.36 285 9/15/2023
22.2.12 193 9/5/2023
22.2.11 219 8/28/2023
22.2.10 157 8/22/2023
22.2.9 195 8/14/2023
22.2.8 201 8/7/2023
22.2.7 201 8/2/2023
22.2.5 225 7/27/2023
22.1.39 185 7/18/2023
22.1.38 191 7/11/2023
22.1.37 212 7/3/2023
22.1.36 213 6/28/2023
22.1.34 208 6/21/2023
21.2.10 217 6/13/2023
21.2.9 191 6/6/2023
21.2.8 215 5/30/2023
21.2.6 204 5/22/2023
21.2.5 225 5/15/2023
21.2.4 279 5/9/2023
21.2.3 371 5/3/2023
21.1.41 252 4/19/2023
21.1.39 273 4/10/2023
21.1.38 311 4/3/2023
21.1.37 323 3/29/2023
21.1.35 528 3/23/2023
20.4.0.54 342 3/13/2023
20.4.0.53 326 3/7/2023
20.4.0.52 338 2/28/2023
20.4.0.51 314 2/21/2023
20.4.0.50 304 2/14/2023
20.4.0.49 306 2/7/2023
20.4.0.48 388 2/1/2023
20.4.0.44 438 1/18/2023
20.4.0.43 443 1/10/2023
20.4.0.42 377 1/4/2023
20.4.0.41 459 12/29/2022
20.4.0.40 349 12/28/2022
20.4.0.38 525 12/21/2022
20.3.0.61 379 12/13/2022
20.3.0.60 379 12/6/2022
20.3.0.59 378 11/29/2022
20.3.0.58 375 11/22/2022
20.3.0.57 404 11/15/2022
20.3.0.56 458 11/8/2022
20.3.0.52 255 10/27/2022
20.3.0.50 178 10/18/2022
20.3.0.49 188 10/11/2022
20.3.0.48 144 10/5/2022
20.3.0.47 208 9/29/2022
20.2.0.50 200 9/20/2022
20.2.0.49 186 9/13/2022
20.2.0.48 183 9/6/2022
20.2.0.46 178 8/30/2022
20.2.0.45 177 8/23/2022
20.2.0.44 177 8/16/2022
20.2.0.43 188 8/8/2022
20.2.0.40 311 7/26/2022
20.2.0.39 193 7/19/2022
20.2.0.38 183 7/12/2022
20.2.0.36 315 6/30/2022
20.1.0.61 194 6/21/2022
20.1.0.60 176 6/14/2022
20.1.0.59 185 6/7/2022
20.1.0.58 498 5/31/2022
20.1.0.57 211 5/24/2022
20.1.0.56 190 5/17/2022
20.1.0.55 342 5/12/2022
20.1.0.52 246 5/3/2022
20.1.0.51 212 4/26/2022
20.1.0.50 250 4/19/2022
20.1.0.48 207 4/12/2022
20.1.0.47 362 4/4/2022
19.4.0.56 231 3/15/2022
19.4.0.55 207 3/8/2022
19.4.0.54 222 3/1/2022
19.4.0.53 321 2/22/2022
19.4.0.52 192 2/15/2022
19.4.0.50 190 2/8/2022
19.4.0.48 292 1/31/2022
19.4.0.47 210 1/25/2022
19.4.0.43 222 1/18/2022
19.4.0.42 212 1/11/2022
19.4.0.41 217 1/4/2022
19.4.0.40 208 12/28/2021
19.4.0.38 515 12/17/2021