Syncfusion.PresentationRenderer.Net.Core 19.3.0.53

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

// Install Syncfusion.PresentationRenderer.Net.Core as a Cake Tool
#tool nuget:?package=Syncfusion.PresentationRenderer.Net.Core&version=19.3.0.53

The Syncfusion .NET Core PowerPoint library (Essential Presentation) allows you to add advanced PowerPoint Presentations processing functionalities to any .NET Core 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 Core PowerPoint library NuGet by simply running Install-Package Syncfusion.PresentationRenderer.Net.Core 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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.4 is compatible.  netstandard1.5 was computed.  netstandard1.6 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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 (1)

Showing the top 1 NuGet packages that depend on Syncfusion.PresentationRenderer.Net.Core:

Package Downloads
Verify.Syncfusion The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via Syncfusion.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.40 212 4/15/2024
25.1.39 1,137 4/8/2024
25.1.38 230 4/1/2024
25.1.37 220 3/26/2024
25.1.35 1,819 3/15/2024
24.2.9 1,224 3/4/2024
24.2.8 1,331 2/26/2024
24.2.7 1,903 2/19/2024
24.2.6 617 2/14/2024
24.2.5 474 2/12/2024
24.2.4 1,222 2/6/2024
24.2.3 2,866 1/31/2024
24.1.47 2,346 1/23/2024
24.1.46 608 1/17/2024
24.1.45 2,098 1/9/2024
24.1.44 1,539 1/3/2024
24.1.43 418 12/27/2023
24.1.41 9,960 12/18/2023
23.2.7 2,900 12/6/2023
23.2.6 2,028 11/28/2023
23.2.5 648 11/23/2023
23.2.4 1,547 11/20/2023
23.1.44 2,020 11/6/2023
23.1.43 4,648 10/30/2023
23.1.42 1,721 10/23/2023
23.1.41 2,038 10/16/2023
23.1.40 1,692 10/10/2023
23.1.39 959 10/4/2023
23.1.38 1,903 9/26/2023
23.1.36 4,225 9/15/2023
22.2.12 1,096 9/5/2023
22.2.11 963 8/28/2023
22.2.10 1,905 8/22/2023
22.2.9 1,273 8/14/2023
22.2.8 934 8/7/2023
22.2.7 909 8/2/2023
22.2.5 9,576 7/27/2023
22.1.39 1,429 7/18/2023
22.1.38 2,708 7/11/2023
22.1.37 1,608 7/3/2023
22.1.36 1,173 6/28/2023
22.1.34 5,482 6/21/2023
21.2.10 1,157 6/13/2023
21.2.9 1,604 6/6/2023
21.2.8 1,151 5/30/2023
21.2.6 4,400 5/22/2023
21.2.5 1,394 5/15/2023
21.2.4 2,541 5/9/2023
21.2.3 2,049 5/3/2023
21.1.41 1,711 4/19/2023
21.1.39 3,746 4/10/2023
21.1.38 1,390 4/3/2023
21.1.37 904 3/29/2023
21.1.35 4,408 3/23/2023
20.4.0.54 5,013 3/13/2023
20.4.0.53 4,785 3/7/2023
20.4.0.52 2,235 2/28/2023
20.4.0.51 1,244 2/21/2023
20.4.0.50 1,228 2/14/2023
20.4.0.49 1,650 2/7/2023
20.4.0.48 3,725 2/1/2023
20.4.0.44 2,533 1/18/2023
20.4.0.43 2,625 1/10/2023
20.4.0.42 1,467 1/4/2023
20.4.0.41 858 12/29/2022
20.4.0.40 813 12/28/2022
20.4.0.38 4,370 12/21/2022
20.3.0.61 7,263 12/13/2022
20.3.0.60 1,950 12/6/2022
20.3.0.59 1,546 11/29/2022
20.3.0.58 1,125 11/22/2022
20.3.0.57 985 11/15/2022
20.3.0.56 2,177 11/8/2022
20.3.0.52 2,625 10/27/2022
20.3.0.50 3,547 10/18/2022
20.3.0.49 1,785 10/11/2022
20.3.0.48 11,806 10/5/2022
20.3.0.47 27,509 9/29/2022
20.2.0.50 1,869 9/20/2022
20.2.0.49 586 9/13/2022
20.2.0.48 305 9/6/2022
20.2.0.46 229 8/30/2022
20.2.0.45 6,911 8/23/2022
20.2.0.44 460 8/16/2022
20.2.0.43 1,462 8/8/2022
20.2.0.40 545 7/26/2022
20.2.0.39 1,388 7/19/2022
20.2.0.38 2,319 7/12/2022
20.2.0.36 14,786 6/30/2022
20.1.0.61 3,398 6/21/2022
20.1.0.60 1,836 6/14/2022
20.1.0.59 1,021 6/7/2022
20.1.0.58 2,901 5/31/2022
20.1.0.57 427 5/24/2022
20.1.0.56 546 5/17/2022
20.1.0.55 3,625 5/12/2022
20.1.0.52 1,347 5/3/2022
20.1.0.51 4,685 4/26/2022
20.1.0.50 382 4/19/2022
20.1.0.48 427 4/12/2022
20.1.0.47 4,983 4/4/2022
19.4.0.56 11,140 3/15/2022
19.4.0.55 1,610 3/8/2022
19.4.0.54 1,305 3/1/2022
19.4.0.53 10,774 2/22/2022
19.4.0.52 3,072 2/15/2022
19.4.0.50 2,044 2/8/2022
19.4.0.48 4,167 1/31/2022
19.4.0.47 1,760 1/25/2022
19.4.0.43 1,372 1/18/2022
19.4.0.42 1,186 1/11/2022
19.4.0.41 26,819 1/4/2022
19.4.0.40 1,494 12/28/2021
19.4.0.38 7,623 12/17/2021
19.3.0.59 1,306 12/14/2021
19.3.0.57 1,389 12/7/2021
19.3.0.56 1,313 11/30/2021
19.3.0.55 1,258 11/23/2021
19.3.0.54 1,125 11/17/2021
19.3.0.53 3,099 11/12/2021
19.3.0.48 1,909 11/3/2021
19.3.0.47 6,040 10/26/2021
19.3.0.46 3,300 10/19/2021
19.3.0.45 9,112 10/12/2021
19.3.0.44 1,630 10/5/2021
19.3.0.43 4,474 9/30/2021
19.2.0.62 2,060 9/14/2021
19.2.0.60 3,557 9/7/2021
19.2.0.59 1,257 8/31/2021
19.2.0.57 1,650 8/24/2021
19.2.0.56 1,085 8/17/2021
19.2.0.55 2,716 8/11/2021
19.2.0.51 3,233 8/2/2021
19.2.0.49 1,194 7/27/2021
19.2.0.48 1,062 7/20/2021
19.2.0.47 1,143 7/13/2021
19.2.0.46 1,029 7/6/2021
19.2.0.44 5,044 6/30/2021
19.1.0.69 2,314 6/15/2021
19.1.0.67 228,431 6/8/2021
19.1.0.66 1,080 6/1/2021
19.1.0.65 1,038 5/25/2021
19.1.0.64 1,016 5/19/2021
19.1.0.63 2,028 5/13/2021
19.1.0.59 1,194 5/4/2021
19.1.0.58 1,148 4/27/2021
19.1.0.57 1,385 4/20/2021
19.1.0.56 997 4/13/2021
19.1.0.55 994 4/6/2021
19.1.0.54 42,239 3/30/2021
18.4.0.49 1,906 3/23/2021
18.4.0.48 5,483 3/16/2021
18.4.0.47 3,172 3/9/2021
18.4.0.46 2,531 3/2/2021
18.4.0.44 1,021 2/23/2021
18.4.0.43 3,065 2/16/2021
18.4.0.42 1,130 2/9/2021
18.4.0.41 1,330 2/2/2021
18.4.0.39 3,434 1/28/2021
18.4.0.35 6,071 1/19/2021
18.4.0.34 1,194 1/12/2021
18.4.0.33 4,162 1/5/2021
18.4.0.32 2,329 12/30/2020
18.4.0.31 5,398 12/22/2020
18.4.0.30 6,706 12/17/2020
18.3.0.53 1,937 12/8/2020
18.3.0.52 10,165 11/30/2020
18.3.0.51 1,049 11/24/2020
18.3.0.50 2,472 11/17/2020
18.3.0.48 1,151 11/11/2020
18.3.0.47 2,005 11/5/2020
18.3.0.44 1,533 10/27/2020
18.3.0.42 1,419 10/20/2020
18.3.0.40 3,526 10/13/2020
18.3.0.38 1,314 10/7/2020
18.3.0.35 7,422 10/1/2020
18.2.0.59 1,897 9/22/2020
18.2.0.58 1,510 9/15/2020
18.2.0.57 27,566 9/8/2020
18.2.0.56 1,341 9/1/2020
18.2.0.55 1,230 8/25/2020
18.2.0.54 1,185 8/18/2020
18.2.0.48 2,311 8/4/2020
18.2.0.47 1,734 7/28/2020
18.2.0.46 1,473 7/21/2020
18.2.0.45 2,576 7/14/2020
18.2.0.44 5,671 7/7/2020
18.1.0.59 1,453 6/23/2020
18.1.0.57 1,397 6/16/2020
18.1.0.56 1,724 6/9/2020
18.1.0.55 1,209 6/2/2020
18.1.0.54 1,191 5/27/2020
18.1.0.53 1,719 5/19/2020
18.1.0.52 2,120 5/13/2020
18.1.0.48 1,170 5/5/2020
18.1.0.46 1,238 4/28/2020
18.1.0.45 1,222 4/21/2020
18.1.0.44 1,228 4/14/2020
18.1.0.43 1,828 4/7/2020
18.1.0.42 5,419 4/1/2020
18.1.0.36-beta 2,124 3/19/2020
17.4.0.55 1,218 3/10/2020
17.4.0.53 1,251 3/3/2020
17.4.0.51 1,232 2/25/2020
17.4.0.50 1,129 2/18/2020
17.4.0.49 1,103 2/11/2020
17.4.0.47 1,243 2/5/2020
17.4.0.46 2,108 1/30/2020
17.4.0.44 5,299 1/21/2020
17.4.0.43 1,678 1/14/2020
17.4.0.41 1,170 1/7/2020
17.4.0.40 1,346 12/24/2019
17.4.0.39 5,101 12/17/2019
17.3.0.34 1,346 12/10/2019
17.3.0.33 1,302 12/4/2019
17.3.0.30 1,246 12/3/2019
17.3.0.29 1,661 11/26/2019
17.3.0.28 1,297 11/19/2019
17.3.0.27 1,214 11/12/2019
17.3.0.26 1,625 11/5/2019
17.3.0.21 1,208 10/29/2019
17.3.0.19 1,231 10/22/2019
17.3.0.17 1,473 10/15/2019
17.3.0.14 3,919 10/3/2019
17.3.0.9-beta 76,665 9/20/2019
17.2.0.51 2,047 9/10/2019
17.2.0.49 1,260 9/3/2019
17.2.0.47 1,289 8/27/2019
17.2.0.46 2,631 8/22/2019
17.2.0.41 1,282 8/13/2019
17.2.0.40 1,222 8/6/2019
17.2.0.39 1,310 7/30/2019
17.2.0.36 1,163 7/23/2019
17.2.0.35 1,180 7/17/2019
17.2.0.34 3,498 7/11/2019
17.2.0.28-beta 1,242 6/27/2019
17.1.0.53 1,983 6/25/2019
17.1.0.52 1,298 6/18/2019
17.1.0.51 1,251 6/11/2019
17.1.0.50 1,270 6/4/2019
17.1.0.49 1,184 5/28/2019
17.1.0.48 1,217 5/21/2019
17.1.0.47 1,319 5/14/2019
17.1.0.44 4,987 5/7/2019
17.1.0.43 1,240 4/30/2019
17.1.0.42 1,322 4/23/2019
17.1.0.41 1,238 4/16/2019
17.1.0.40 1,237 4/9/2019
17.1.0.38 1,773 3/29/2019
17.1.0.32-beta 1,117 3/14/2019