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

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

The Syncfusion .NET PowerPoint library (Essential Presentation) allows you to add advanced PowerPoint Presentations processing functionalities to any .NET application and does not require Microsoft PowerPoint application to be installed in the machine. It is a non-UI component that provides a full-fledged document instance model similar to the Microsoft Office COM libraries to iterate with the PowerPoint presentation elements explicitly and perform necessary manipulation. Using this library, you can create, read, edit and convert PowerPoint presentation programmatically.

Key Features

Getting Started

You can fetch the Syncfusion .NET PowerPoint library NuGet by simply running Install-Package Syncfusion.PresentationRenderer.NET from the Package Manager Console in Visual Studio.

You can also try some code examples of common use cases from our GitHub Repository.

Convert PPTX to PDF programmatically using C#

The following code example illustrates how to convert the PowerPoint Presentation to 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);
			}
		}
	}
}

Convert PPTX to image programmatically using C#

The following code example illustrates how to convert the PowerPoint Presentation to image.

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);
			}
		}
	}
}

Supported File Formats

  • Creates, reads, and edits popular text file formats like PPTX, PPTM, POTX and POTM.
  • Converts PowerPoint Presentation also to PDF, and Image.

Compatible Microsoft PowerPoint Versions

  • Microsoft PowerPoint 2007
  • Microsoft PowerPoint 2010
  • Microsoft PowerPoint 2013
  • Microsoft PowerPoint 2016
  • Microsoft PowerPoint 2019

Resources

Support and feedback

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 licnense 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 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter 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
27.2.3 0 11/22/2024
27.2.2 99 11/15/2024
27.1.58 168 11/4/2024
27.1.57 104 10/28/2024
27.1.56 103 10/23/2024
27.1.55 81 10/21/2024
27.1.53 294 10/14/2024
27.1.52 96 10/7/2024
27.1.51 130 9/30/2024
27.1.50 191 9/24/2024
27.1.48 151 9/18/2024
26.2.14 228 9/9/2024
26.2.13 579 9/5/2024
26.2.12 278 9/2/2024
26.2.11 363 8/27/2024
26.2.10 139 8/19/2024
26.2.9 165 8/12/2024
26.2.8 1,584 8/5/2024
26.2.7 628 7/29/2024
26.2.5 373 7/26/2024
26.2.4 142 7/24/2024
26.1.42 345 7/15/2024
26.1.41 210 7/8/2024
26.1.40 146 7/1/2024
26.1.39 120 6/24/2024
26.1.38 118 6/18/2024
26.1.35 227 6/11/2024
25.2.7 122 6/3/2024
25.2.6 165 5/28/2024
25.2.5 116 5/21/2024
25.2.4 172 5/14/2024
25.2.3 124 5/8/2024
25.1.42 113 4/29/2024
25.1.41 141 4/23/2024
25.1.40 156 4/15/2024
25.1.39 117 4/8/2024
25.1.38 140 4/1/2024
25.1.37 166 3/26/2024
25.1.35 411 3/15/2024
24.2.9 476 3/4/2024
24.2.8 144 2/26/2024
24.2.7 286 2/19/2024
24.2.6 150 2/14/2024
24.2.5 120 2/12/2024
24.2.4 107 2/6/2024
24.2.3 144 1/31/2024
24.1.47 360 1/22/2024
24.1.46 147 1/16/2024
24.1.45 153 1/9/2024
24.1.44 138 1/3/2024
24.1.43 247 12/27/2023
24.1.41 156 12/18/2023
23.2.7 245 12/6/2023
23.2.6 154 11/28/2023
23.2.5 138 11/23/2023
23.2.4 146 11/20/2023
23.1.44 500 11/6/2023
23.1.43 167 10/30/2023
23.1.42 182 10/23/2023
23.1.41 195 10/16/2023
23.1.40 192 10/10/2023
23.1.39 134 10/4/2023
23.1.38 169 9/26/2023
23.1.36 271 9/15/2023
22.2.12 176 9/5/2023
22.2.11 203 8/28/2023
22.2.10 139 8/22/2023
22.2.9 176 8/14/2023
22.2.8 180 8/7/2023
22.2.7 184 8/2/2023
22.2.5 206 7/27/2023
22.1.39 166 7/18/2023
22.1.38 171 7/11/2023
22.1.37 193 7/3/2023
22.1.36 194 6/28/2023
22.1.34 190 6/21/2023
21.2.10 189 6/13/2023
21.2.9 166 6/6/2023
21.2.8 189 5/30/2023
21.2.6 177 5/22/2023
21.2.5 197 5/15/2023
21.2.4 253 5/9/2023
21.2.3 344 5/3/2023
21.1.41 226 4/19/2023
21.1.39 247 4/10/2023
21.1.38 279 4/3/2023
21.1.37 295 3/29/2023
21.1.35 500 3/23/2023
20.4.0.54 314 3/13/2023
20.4.0.53 297 3/7/2023
20.4.0.52 313 2/28/2023
20.4.0.51 287 2/21/2023
20.4.0.50 276 2/14/2023
20.4.0.49 278 2/7/2023
20.4.0.48 359 2/1/2023
20.4.0.44 409 1/18/2023
20.4.0.43 411 1/10/2023
20.4.0.42 348 1/4/2023
20.4.0.41 432 12/29/2022
20.4.0.40 322 12/28/2022
20.4.0.38 495 12/21/2022
20.3.0.61 350 12/13/2022
20.3.0.60 345 12/6/2022
20.3.0.59 347 11/29/2022
20.3.0.58 344 11/22/2022
20.3.0.57 376 11/15/2022
20.3.0.56 429 11/8/2022
20.3.0.52 222 10/27/2022
20.3.0.50 147 10/18/2022
20.3.0.49 156 10/11/2022
20.3.0.48 114 10/5/2022
20.3.0.47 171 9/29/2022
20.2.0.50 169 9/20/2022
20.2.0.49 154 9/13/2022
20.2.0.48 150 9/6/2022
20.2.0.46 141 8/30/2022
20.2.0.45 145 8/23/2022
20.2.0.44 145 8/16/2022
20.2.0.43 156 8/8/2022
20.2.0.40 278 7/26/2022
20.2.0.39 157 7/19/2022
20.2.0.38 150 7/12/2022
20.2.0.36 281 6/30/2022
20.1.0.61 157 6/21/2022
20.1.0.60 143 6/14/2022
20.1.0.59 152 6/7/2022
20.1.0.58 464 5/31/2022
20.1.0.57 177 5/24/2022
20.1.0.56 156 5/17/2022
20.1.0.55 308 5/12/2022
20.1.0.52 210 5/3/2022
20.1.0.51 174 4/26/2022
20.1.0.50 212 4/19/2022
20.1.0.48 170 4/12/2022
20.1.0.47 324 4/4/2022
19.4.0.56 187 3/15/2022
19.4.0.55 168 3/8/2022
19.4.0.54 176 3/1/2022
19.4.0.53 280 2/22/2022
19.4.0.52 151 2/15/2022
19.4.0.50 147 2/8/2022
19.4.0.48 250 1/31/2022
19.4.0.47 168 1/25/2022
19.4.0.43 180 1/18/2022
19.4.0.42 170 1/11/2022
19.4.0.41 174 1/4/2022
19.4.0.40 164 12/28/2021
19.4.0.38 467 12/17/2021