Syncfusion.PresentationRenderer.Net.Core 19.3.0.59

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

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.  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 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

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
29.2.7 331 5/26/2025
29.2.5 362 5/21/2025
29.2.4 990 5/14/2025
29.1.41 723 5/5/2025
29.1.40 1,281 4/28/2025
29.1.39 816 4/21/2025
29.1.38 2,494 4/15/2025
29.1.37 1,205 4/8/2025
29.1.35 4,168 4/1/2025
29.1.33 1,843 3/25/2025
28.2.12 393 3/19/2025
28.2.11 5,716 3/11/2025
28.2.9 3,677 3/4/2025
28.2.7 2,668 2/25/2025
28.2.6 3,096 2/17/2025
28.2.5 834 2/11/2025
28.2.4 6,152 2/4/2025
28.2.3 3,638 1/29/2025
28.1.41 2,380 1/21/2025
28.1.39 406 1/13/2025
28.1.38 3,058 1/7/2025
28.1.37 471 12/31/2024
28.1.36 779 12/23/2024
28.1.35 10,755 12/18/2024
28.1.33 6,775 12/12/2024
27.2.5 5,077 12/2/2024
27.2.4 2,588 11/26/2024
27.2.3 9,759 11/22/2024
27.2.2 1,916 11/15/2024
27.1.58 2,226 11/4/2024
27.1.57 1,730 10/28/2024
27.1.56 1,271 10/23/2024
27.1.55 1,600 10/21/2024
27.1.53 4,917 10/14/2024
27.1.52 1,439 10/7/2024
27.1.51 4,679 9/30/2024
27.1.50 1,861 9/24/2024
27.1.48 6,417 9/18/2024
26.2.14 3,663 9/9/2024
26.2.13 596 9/5/2024
26.2.12 1,531 9/2/2024
26.2.11 2,379 8/27/2024
26.2.10 2,580 8/19/2024
26.2.9 3,816 8/12/2024
26.2.8 978 8/5/2024
26.2.7 1,861 7/29/2024
26.2.5 13,616 7/26/2024
26.2.4 1,588 7/24/2024
26.1.42 15,273 7/15/2024
26.1.41 1,408 7/8/2024
26.1.40 2,251 7/1/2024
26.1.39 1,912 6/24/2024
26.1.38 1,403 6/18/2024
26.1.35 7,695 6/11/2024
25.2.7 6,887 6/3/2024
25.2.6 12,954 5/28/2024
25.2.5 1,420 5/21/2024
25.2.4 2,614 5/14/2024
25.2.3 3,934 5/8/2024
25.1.42 763 4/29/2024
25.1.41 452 4/23/2024
25.1.40 22,985 4/15/2024
25.1.39 5,046 4/8/2024
25.1.38 1,349 4/1/2024
25.1.37 463 3/26/2024
25.1.35 23,728 3/15/2024
24.2.9 4,957 3/4/2024
24.2.8 3,190 2/26/2024
24.2.7 16,228 2/19/2024
24.2.6 2,009 2/14/2024
24.2.5 567 2/12/2024
24.2.4 2,751 2/6/2024
24.2.3 3,863 1/31/2024
24.1.47 5,064 1/23/2024
24.1.46 1,387 1/17/2024
24.1.45 5,819 1/9/2024
24.1.44 3,129 1/3/2024
24.1.43 512 12/27/2023
24.1.41 22,647 12/18/2023
23.2.7 4,661 12/6/2023
23.2.6 4,001 11/28/2023
23.2.5 965 11/23/2023
23.2.4 1,712 11/20/2023
23.1.44 2,964 11/6/2023
23.1.43 18,704 10/30/2023
23.1.42 1,826 10/23/2023
23.1.41 2,886 10/16/2023
23.1.40 2,080 10/10/2023
23.1.39 1,032 10/4/2023
23.1.38 2,042 9/26/2023
23.1.36 5,246 9/15/2023
22.2.12 1,235 9/5/2023
22.2.11 1,128 8/28/2023
22.2.10 2,338 8/22/2023
22.2.9 1,369 8/14/2023
22.2.8 1,060 8/7/2023
22.2.7 1,009 8/2/2023
22.2.5 10,312 7/27/2023
22.1.39 2,092 7/18/2023
22.1.38 4,354 7/11/2023
22.1.37 1,686 7/3/2023
22.1.36 1,729 6/28/2023
22.1.34 8,546 6/21/2023
21.2.10 1,241 6/13/2023
21.2.9 1,822 6/6/2023
21.2.8 1,582 5/30/2023
21.2.6 12,873 5/22/2023
21.2.5 1,671 5/15/2023
21.2.4 2,704 5/9/2023
21.2.3 2,439 5/3/2023
21.1.41 2,070 4/19/2023
21.1.39 4,518 4/10/2023
21.1.38 2,070 4/3/2023
21.1.37 1,068 3/29/2023
21.1.35 4,556 3/23/2023
20.4.0.54 5,127 3/13/2023
20.4.0.53 5,570 3/7/2023
20.4.0.52 2,412 2/28/2023
20.4.0.51 1,330 2/21/2023
20.4.0.50 1,309 2/14/2023
20.4.0.49 1,748 2/7/2023
20.4.0.48 4,273 2/1/2023
20.4.0.44 3,784 1/18/2023
20.4.0.43 2,740 1/10/2023
20.4.0.42 1,926 1/4/2023
20.4.0.41 946 12/29/2022
20.4.0.40 890 12/28/2022
20.4.0.38 4,910 12/21/2022
20.3.0.61 8,557 12/13/2022
20.3.0.60 2,042 12/6/2022
20.3.0.59 1,685 11/29/2022
20.3.0.58 1,218 11/22/2022
20.3.0.57 1,089 11/15/2022
20.3.0.56 3,867 11/8/2022
20.3.0.52 2,822 10/27/2022
20.3.0.50 3,658 10/18/2022
20.3.0.49 1,860 10/11/2022
20.3.0.48 12,010 10/5/2022
20.3.0.47 33,825 9/29/2022
20.2.0.50 2,249 9/20/2022
20.2.0.49 1,932 9/13/2022
20.2.0.48 355 9/6/2022
20.2.0.46 285 8/30/2022
20.2.0.45 7,584 8/23/2022
20.2.0.44 513 8/16/2022
20.2.0.43 1,561 8/8/2022
20.2.0.40 603 7/26/2022
20.2.0.39 3,171 7/19/2022
20.2.0.38 2,383 7/12/2022
20.2.0.36 16,216 6/30/2022
20.1.0.61 13,741 6/21/2022
20.1.0.60 2,134 6/14/2022
20.1.0.59 1,249 6/7/2022
20.1.0.58 3,320 5/31/2022
20.1.0.57 482 5/24/2022
20.1.0.56 597 5/17/2022
20.1.0.55 3,732 5/12/2022
20.1.0.52 1,861 5/3/2022
20.1.0.51 5,678 4/26/2022
20.1.0.50 447 4/19/2022
20.1.0.48 481 4/12/2022
20.1.0.47 5,119 4/4/2022
19.4.0.56 12,455 3/15/2022
19.4.0.55 1,799 3/8/2022
19.4.0.54 1,435 3/1/2022
19.4.0.53 29,574 2/22/2022
19.4.0.52 4,294 2/15/2022
19.4.0.50 2,152 2/8/2022
19.4.0.48 4,273 1/31/2022
19.4.0.47 1,898 1/25/2022
19.4.0.43 1,479 1/18/2022
19.4.0.42 1,271 1/11/2022
19.4.0.41 26,966 1/4/2022
19.4.0.40 1,998 12/28/2021
19.4.0.38 10,629 12/17/2021
19.3.0.59 1,401 12/14/2021
19.3.0.57 1,485 12/7/2021
19.3.0.56 1,403 11/30/2021
19.3.0.55 1,364 11/23/2021
19.3.0.54 1,219 11/17/2021
19.3.0.53 3,341 11/12/2021
19.3.0.48 2,314 11/3/2021
19.3.0.47 6,487 10/26/2021
19.3.0.46 3,936 10/19/2021
19.3.0.45 9,219 10/12/2021
19.3.0.44 1,721 10/5/2021
19.3.0.43 4,604 9/30/2021
19.2.0.62 2,160 9/14/2021
19.2.0.60 3,663 9/7/2021
19.2.0.59 1,359 8/31/2021
19.2.0.57 1,748 8/24/2021
19.2.0.56 1,178 8/17/2021
19.2.0.55 2,830 8/11/2021
19.2.0.51 4,699 8/2/2021
19.2.0.49 1,297 7/27/2021
19.2.0.48 1,163 7/20/2021
19.2.0.47 1,253 7/13/2021
19.2.0.46 1,117 7/6/2021
19.2.0.44 5,166 6/30/2021
19.1.0.69 2,473 6/15/2021
19.1.0.67 372,494 6/8/2021
19.1.0.66 1,187 6/1/2021
19.1.0.65 1,138 5/25/2021
19.1.0.64 1,107 5/19/2021
19.1.0.63 2,113 5/13/2021
19.1.0.59 1,304 5/4/2021
19.1.0.58 1,255 4/27/2021
19.1.0.57 1,497 4/20/2021
19.1.0.56 1,097 4/13/2021
19.1.0.55 1,097 4/6/2021
19.1.0.54 51,189 3/30/2021
18.4.0.49 2,518 3/23/2021
18.4.0.48 5,592 3/16/2021
18.4.0.47 3,580 3/9/2021
18.4.0.46 2,722 3/2/2021
18.4.0.44 1,141 2/23/2021
18.4.0.43 3,539 2/16/2021
18.4.0.42 1,389 2/9/2021
18.4.0.41 1,442 2/2/2021
18.4.0.39 9,380 1/28/2021
18.4.0.35 6,265 1/19/2021
18.4.0.34 1,305 1/12/2021
18.4.0.33 4,298 1/5/2021
18.4.0.32 2,426 12/30/2020
18.4.0.31 7,671 12/22/2020
18.4.0.30 6,845 12/17/2020
18.3.0.53 2,047 12/8/2020
18.3.0.52 10,903 11/30/2020
18.3.0.51 1,173 11/24/2020
18.3.0.50 2,601 11/17/2020
18.3.0.48 1,267 11/11/2020
18.3.0.47 2,104 11/5/2020
18.3.0.44 1,894 10/27/2020
18.3.0.42 1,531 10/20/2020
18.3.0.40 3,649 10/13/2020
18.3.0.38 1,429 10/7/2020
18.3.0.35 7,573 10/1/2020
18.2.0.59 2,001 9/22/2020
18.2.0.58 1,629 9/15/2020
18.2.0.57 27,702 9/8/2020
18.2.0.56 1,444 9/1/2020
18.2.0.55 1,357 8/25/2020
18.2.0.54 1,323 8/18/2020
18.2.0.48 2,417 8/4/2020
18.2.0.47 1,847 7/28/2020
18.2.0.46 1,583 7/21/2020
18.2.0.45 2,694 7/14/2020
18.2.0.44 5,847 7/7/2020
18.1.0.59 1,592 6/23/2020
18.1.0.57 1,516 6/16/2020
18.1.0.56 1,844 6/9/2020
18.1.0.55 1,330 6/2/2020
18.1.0.54 1,307 5/27/2020
18.1.0.53 1,850 5/19/2020
18.1.0.52 2,229 5/13/2020
18.1.0.48 1,286 5/5/2020
18.1.0.46 1,348 4/28/2020
18.1.0.45 1,337 4/21/2020
18.1.0.44 1,327 4/14/2020
18.1.0.43 1,976 4/7/2020
18.1.0.42 5,537 4/1/2020
18.1.0.36-beta 2,226 3/19/2020
17.4.0.55 1,335 3/10/2020
17.4.0.53 1,368 3/3/2020
17.4.0.51 1,348 2/25/2020
17.4.0.50 1,234 2/18/2020
17.4.0.49 1,213 2/11/2020
17.4.0.47 1,353 2/5/2020
17.4.0.46 2,219 1/30/2020
17.4.0.44 6,048 1/21/2020
17.4.0.43 1,798 1/14/2020
17.4.0.41 1,279 1/7/2020
17.4.0.40 1,462 12/24/2019
17.4.0.39 6,387 12/17/2019
17.3.0.34 1,458 12/10/2019
17.3.0.33 1,419 12/4/2019
17.3.0.30 1,358 12/3/2019
17.3.0.29 1,792 11/26/2019
17.3.0.28 1,427 11/19/2019
17.3.0.27 1,332 11/12/2019
17.3.0.26 1,755 11/5/2019
17.3.0.21 1,336 10/29/2019
17.3.0.19 1,346 10/22/2019
17.3.0.17 1,587 10/15/2019
17.3.0.14 4,031 10/3/2019
17.3.0.9-beta 76,775 9/20/2019
17.2.0.51 2,165 9/10/2019
17.2.0.49 1,371 9/3/2019
17.2.0.47 1,400 8/27/2019
17.2.0.46 2,743 8/22/2019
17.2.0.41 1,395 8/13/2019
17.2.0.40 1,336 8/6/2019
17.2.0.39 1,448 7/30/2019
17.2.0.36 1,288 7/23/2019
17.2.0.35 1,305 7/17/2019
17.2.0.34 3,624 7/11/2019
17.2.0.28-beta 1,340 6/27/2019
17.1.0.53 2,884 6/25/2019
17.1.0.52 1,412 6/18/2019
17.1.0.51 1,351 6/11/2019
17.1.0.50 1,409 6/4/2019
17.1.0.49 1,307 5/28/2019
17.1.0.48 1,333 5/21/2019
17.1.0.47 1,437 5/14/2019
17.1.0.44 5,101 5/7/2019
17.1.0.43 1,357 4/30/2019
17.1.0.42 1,425 4/23/2019
17.1.0.41 1,351 4/16/2019
17.1.0.40 1,362 4/9/2019
17.1.0.38 2,005 3/29/2019
17.1.0.32-beta 1,236 3/14/2019