Syncfusion.Xamarin.PresentationRenderer
20.3.0.57
Prefix Reserved
See the version list below for details.
dotnet add package Syncfusion.Xamarin.PresentationRenderer --version 20.3.0.57
NuGet\Install-Package Syncfusion.Xamarin.PresentationRenderer -Version 20.3.0.57
<PackageReference Include="Syncfusion.Xamarin.PresentationRenderer" Version="20.3.0.57" />
paket add Syncfusion.Xamarin.PresentationRenderer --version 20.3.0.57
#r "nuget: Syncfusion.Xamarin.PresentationRenderer, 20.3.0.57"
// Install Syncfusion.Xamarin.PresentationRenderer as a Cake Addin #addin nuget:?package=Syncfusion.Xamarin.PresentationRenderer&version=20.3.0.57 // Install Syncfusion.Xamarin.PresentationRenderer as a Cake Tool #tool nuget:?package=Syncfusion.Xamarin.PresentationRenderer&version=20.3.0.57
Syncfusion Xamarin PowerPoint to PDF converter library
The Syncfusion Xamarin 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.
Features overview | Documentation | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback
Key Features
- Convert entire PowerPoint presentation to PDF.
- Convert specific PowerPoint slide to PDF.
- Convert PowerPoint presentation to PDF with,
- Support to run the Presentation applications in multi-thread and its thread safe.
System Requirements
Getting Started
You can fetch the Syncfusion .NET Core PowerPoint library NuGet by simply running the command Install-Package Syncfusion.Xamarin.PresentationRenderer
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 | Versions 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. |
-
- Syncfusion.Xamarin.Compression (>= 20.3.0.57)
- Syncfusion.Xamarin.OfficeChart (>= 20.3.0.57)
- Syncfusion.Xamarin.Pdf (>= 20.3.0.57)
- Syncfusion.Xamarin.Presentation (>= 20.3.0.57)
- Syncfusion.Xamarin.SkiaSharpHelper (>= 20.3.0.57)
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.Xamarin.PresentationRenderer:
Repository | Stars |
---|---|
syncfusion/xamarin-demos
This repository contains the Syncfusion Xamarin UI control’s samples and the guide to use them.
|
Version | Downloads | Last updated |
---|---|---|
27.1.58 | 28 | 11/4/2024 |
27.1.57 | 85 | 10/28/2024 |
27.1.56 | 73 | 10/23/2024 |
27.1.55 | 72 | 10/21/2024 |
27.1.53 | 106 | 10/14/2024 |
27.1.52 | 78 | 10/7/2024 |
27.1.51 | 87 | 9/30/2024 |
27.1.50 | 81 | 9/23/2024 |
27.1.48 | 104 | 9/18/2024 |
26.2.14 | 103 | 9/9/2024 |
26.2.13 | 113 | 9/5/2024 |
26.2.12 | 97 | 9/2/2024 |
26.2.11 | 92 | 8/27/2024 |
26.2.10 | 126 | 8/19/2024 |
26.2.9 | 126 | 8/12/2024 |
26.2.8 | 92 | 8/5/2024 |
26.2.7 | 58 | 7/29/2024 |
26.2.5 | 84 | 7/26/2024 |
26.2.4 | 81 | 7/24/2024 |
26.1.42 | 106 | 7/15/2024 |
26.1.41 | 96 | 7/8/2024 |
26.1.40 | 110 | 7/1/2024 |
26.1.39 | 96 | 6/24/2024 |
26.1.38 | 110 | 6/18/2024 |
26.1.35 | 110 | 6/11/2024 |
25.2.7 | 121 | 6/3/2024 |
25.2.6 | 94 | 5/28/2024 |
25.2.5 | 100 | 5/21/2024 |
25.2.4 | 76 | 5/14/2024 |
25.2.3 | 135 | 5/8/2024 |
25.1.42 | 111 | 4/29/2024 |
25.1.41 | 113 | 4/23/2024 |
25.1.40 | 124 | 4/15/2024 |
25.1.39 | 96 | 4/8/2024 |
25.1.38 | 128 | 4/1/2024 |
25.1.37 | 117 | 3/26/2024 |
25.1.35 | 149 | 3/15/2024 |
24.2.9 | 126 | 3/4/2024 |
24.2.8 | 127 | 2/26/2024 |
24.2.7 | 113 | 2/19/2024 |
24.2.6 | 111 | 2/14/2024 |
24.2.5 | 108 | 2/12/2024 |
24.2.4 | 121 | 2/5/2024 |
24.2.3 | 127 | 1/31/2024 |
24.1.47 | 108 | 1/22/2024 |
24.1.46 | 125 | 1/16/2024 |
24.1.45 | 138 | 1/8/2024 |
24.1.44 | 129 | 1/2/2024 |
24.1.43 | 122 | 12/27/2023 |
24.1.41 | 877 | 12/18/2023 |
23.2.7 | 197 | 12/6/2023 |
23.2.6 | 163 | 11/28/2023 |
23.2.5 | 155 | 11/23/2023 |
23.2.4 | 150 | 11/20/2023 |
23.1.44 | 177 | 11/6/2023 |
23.1.43 | 163 | 10/30/2023 |
23.1.42 | 168 | 10/23/2023 |
23.1.41 | 181 | 10/16/2023 |
23.1.40 | 181 | 10/10/2023 |
23.1.39 | 173 | 10/4/2023 |
23.1.38 | 522 | 9/26/2023 |
23.1.36 | 211 | 9/15/2023 |
22.2.12 | 197 | 9/5/2023 |
22.2.11 | 214 | 8/28/2023 |
22.2.10 | 174 | 8/22/2023 |
22.2.9 | 205 | 8/14/2023 |
22.2.8 | 181 | 8/7/2023 |
22.2.7 | 166 | 8/2/2023 |
22.2.5 | 230 | 7/27/2023 |
22.1.39 | 197 | 7/18/2023 |
22.1.38 | 186 | 7/11/2023 |
22.1.37 | 216 | 7/3/2023 |
22.1.36 | 217 | 6/28/2023 |
22.1.34 | 188 | 6/21/2023 |
21.2.10 | 226 | 6/12/2023 |
21.2.9 | 184 | 6/6/2023 |
21.2.8 | 232 | 5/30/2023 |
21.2.6 | 224 | 5/22/2023 |
21.2.5 | 262 | 5/15/2023 |
21.2.4 | 253 | 5/9/2023 |
21.2.3 | 278 | 5/3/2023 |
21.1.41 | 255 | 4/19/2023 |
21.1.39 | 296 | 4/10/2023 |
21.1.38 | 306 | 4/3/2023 |
21.1.37 | 289 | 3/29/2023 |
21.1.35 | 388 | 3/23/2023 |
20.4.0.54 | 370 | 3/13/2023 |
20.4.0.53 | 342 | 3/7/2023 |
20.4.0.52 | 361 | 2/28/2023 |
20.4.0.51 | 360 | 2/21/2023 |
20.4.0.50 | 354 | 2/14/2023 |
20.4.0.49 | 2,570 | 2/7/2023 |
20.4.0.48 | 447 | 2/1/2023 |
20.4.0.44 | 435 | 1/18/2023 |
20.4.0.43 | 402 | 1/10/2023 |
20.4.0.42 | 436 | 1/4/2023 |
20.4.0.41 | 405 | 12/29/2022 |
20.4.0.40 | 382 | 12/28/2022 |
20.4.0.38 | 433 | 12/21/2022 |
20.3.0.61 | 419 | 12/12/2022 |
20.3.0.60 | 409 | 12/6/2022 |
20.3.0.59 | 547 | 11/29/2022 |
20.3.0.58 | 454 | 11/22/2022 |
20.3.0.57 | 480 | 11/15/2022 |
20.3.0.56 | 473 | 11/8/2022 |
20.3.0.52 | 501 | 10/27/2022 |
20.3.0.50 | 552 | 10/18/2022 |
20.3.0.49 | 562 | 10/11/2022 |
20.3.0.48 | 487 | 10/5/2022 |
20.3.0.47 | 570 | 9/29/2022 |
20.2.0.50 | 558 | 9/20/2022 |
20.2.0.49 | 557 | 9/13/2022 |
20.2.0.48 | 536 | 9/6/2022 |
20.2.0.46 | 546 | 8/30/2022 |
20.2.0.45 | 559 | 8/23/2022 |
20.2.0.44 | 557 | 8/16/2022 |
20.2.0.43 | 630 | 8/8/2022 |
20.2.0.40 | 563 | 7/26/2022 |
20.2.0.39 | 575 | 7/19/2022 |
20.2.0.38 | 560 | 7/12/2022 |
20.2.0.36 | 650 | 6/30/2022 |
20.1.0.61 | 601 | 6/20/2022 |
20.1.0.60 | 564 | 6/14/2022 |
20.1.0.59 | 541 | 6/6/2022 |
20.1.0.58 | 576 | 5/31/2022 |
20.1.0.57 | 2,092 | 5/24/2022 |
20.1.0.56 | 649 | 5/17/2022 |
20.1.0.55 | 639 | 5/12/2022 |
20.1.0.52 | 616 | 5/3/2022 |
20.1.0.51 | 630 | 4/26/2022 |
20.1.0.50 | 555 | 4/19/2022 |
20.1.0.48 | 546 | 4/12/2022 |
20.1.0.47 | 605 | 4/4/2022 |
19.4.0.56 | 802 | 3/14/2022 |
19.4.0.55 | 715 | 3/8/2022 |
19.4.0.54 | 722 | 2/28/2022 |
19.4.0.53 | 717 | 2/22/2022 |
19.4.0.52 | 731 | 2/15/2022 |
19.4.0.50 | 738 | 2/8/2022 |
19.4.0.48 | 3,498 | 1/31/2022 |
19.4.0.47 | 730 | 1/25/2022 |
19.4.0.43 | 717 | 1/18/2022 |
19.4.0.42 | 626 | 1/11/2022 |
19.4.0.41 | 412 | 1/4/2022 |
19.4.0.40 | 456 | 12/28/2021 |
19.4.0.38 | 511 | 12/17/2021 |
19.3.0.59 | 447 | 12/14/2021 |
19.3.0.57 | 469 | 12/7/2021 |
19.3.0.56 | 1,174 | 11/29/2021 |
19.3.0.55 | 572 | 11/23/2021 |
19.3.0.54 | 464 | 11/17/2021 |
19.3.0.53 | 495 | 11/12/2021 |
19.3.0.48 | 509 | 11/2/2021 |
19.3.0.47 | 506 | 10/26/2021 |
19.3.0.46 | 471 | 10/19/2021 |
19.3.0.45 | 513 | 10/12/2021 |
19.3.0.44 | 515 | 10/5/2021 |
19.3.0.43 | 573 | 9/30/2021 |
19.2.0.62 | 556 | 9/13/2021 |
19.2.0.60 | 507 | 9/7/2021 |
19.2.0.59 | 532 | 8/30/2021 |
19.2.0.57 | 576 | 8/24/2021 |
19.2.0.56 | 540 | 8/17/2021 |
19.2.0.55 | 598 | 8/11/2021 |
19.2.0.51 | 1,178 | 8/2/2021 |
19.2.0.49 | 515 | 7/26/2021 |
19.2.0.48 | 512 | 7/19/2021 |
19.2.0.47 | 565 | 7/13/2021 |
19.2.0.46 | 547 | 7/6/2021 |
19.2.0.44 | 1,185 | 6/30/2021 |
19.1.0.69 | 1,162 | 6/14/2021 |
19.1.0.67 | 556 | 6/7/2021 |
19.1.0.66 | 548 | 5/31/2021 |
19.1.0.65 | 545 | 5/24/2021 |
19.1.0.64 | 713 | 5/19/2021 |
19.1.0.63 | 631 | 5/13/2021 |
19.1.0.59 | 544 | 5/3/2021 |
19.1.0.58 | 527 | 4/26/2021 |
19.1.0.57 | 554 | 4/20/2021 |
19.1.0.56 | 529 | 4/13/2021 |
19.1.0.55 | 562 | 4/6/2021 |
19.1.0.54 | 1,152 | 3/30/2021 |
18.4.0.49 | 572 | 3/22/2021 |
18.4.0.48 | 508 | 3/16/2021 |
18.4.0.47 | 561 | 3/9/2021 |
18.4.0.46 | 527 | 3/2/2021 |
18.4.0.44 | 588 | 2/23/2021 |
18.4.0.43 | 651 | 2/15/2021 |
18.4.0.42 | 580 | 2/9/2021 |
18.4.0.41 | 44,495 | 2/2/2021 |
18.4.0.39 | 734 | 1/28/2021 |
18.4.0.35 | 3,787 | 1/19/2021 |
18.4.0.34 | 524 | 1/12/2021 |
18.4.0.33 | 590 | 1/4/2021 |
18.4.0.32 | 594 | 12/30/2020 |
18.4.0.31 | 540 | 12/22/2020 |
18.4.0.30 | 721 | 12/17/2020 |
18.3.0.53 | 645 | 12/8/2020 |
18.3.0.52 | 772 | 11/30/2020 |
18.3.0.51 | 600 | 11/23/2020 |
18.3.0.50 | 609 | 11/17/2020 |
18.3.0.48 | 592 | 11/10/2020 |
18.3.0.47 | 958 | 11/5/2020 |
18.3.0.44 | 793 | 10/27/2020 |
18.3.0.42 | 668 | 10/20/2020 |
18.3.0.40 | 900 | 10/12/2020 |
18.3.0.38 | 685 | 10/7/2020 |
18.3.0.35 | 712 | 10/1/2020 |
18.2.0.59 | 602 | 9/22/2020 |
18.2.0.58 | 668 | 9/15/2020 |
18.2.0.57 | 576 | 9/8/2020 |
18.2.0.56 | 582 | 9/1/2020 |
18.2.0.55 | 651 | 8/25/2020 |
18.2.0.54 | 613 | 8/18/2020 |
18.2.0.48 | 783 | 8/4/2020 |
18.2.0.47 | 661 | 7/28/2020 |
18.2.0.46 | 604 | 7/21/2020 |
18.2.0.45 | 675 | 7/14/2020 |
18.2.0.44 | 917 | 7/6/2020 |
18.1.0.59 | 675 | 6/23/2020 |
18.1.0.57 | 630 | 6/16/2020 |
18.1.0.56 | 666 | 6/9/2020 |
18.1.0.55 | 644 | 6/2/2020 |
18.1.0.54 | 663 | 5/27/2020 |
18.1.0.53 | 695 | 5/19/2020 |
18.1.0.52 | 836 | 5/13/2020 |
18.1.0.48 | 698 | 5/5/2020 |
18.1.0.46 | 687 | 4/28/2020 |
18.1.0.45 | 679 | 4/21/2020 |
18.1.0.44 | 710 | 4/14/2020 |
18.1.0.43 | 727 | 4/7/2020 |
18.1.0.42 | 872 | 4/1/2020 |
18.1.0.36-beta | 430 | 3/19/2020 |
17.4.0.55 | 871 | 3/10/2020 |
17.4.0.53 | 797 | 3/3/2020 |
17.4.0.51 | 1,905 | 2/25/2020 |
17.4.0.50 | 707 | 2/18/2020 |
17.4.0.49 | 716 | 2/11/2020 |
17.4.0.47 | 670 | 2/5/2020 |
17.4.0.46 | 677 | 1/30/2020 |
17.4.0.44 | 681 | 1/21/2020 |
17.4.0.43 | 723 | 1/14/2020 |
17.4.0.41 | 711 | 1/7/2020 |
17.4.0.40 | 733 | 12/24/2019 |
17.4.0.39 | 1,054 | 12/17/2019 |
17.3.0.34 | 701 | 12/10/2019 |
17.3.0.33 | 666 | 12/4/2019 |
17.3.0.30 | 695 | 12/3/2019 |
17.3.0.29 | 752 | 11/26/2019 |
17.3.0.28 | 717 | 11/19/2019 |
17.3.0.27 | 699 | 11/12/2019 |
17.3.0.26 | 751 | 11/5/2019 |
17.3.0.21 | 768 | 10/29/2019 |
17.3.0.19 | 723 | 10/22/2019 |
17.3.0.17 | 769 | 10/15/2019 |
17.3.0.14 | 999 | 10/3/2019 |
17.3.0.9-beta | 513 | 9/20/2019 |
17.2.0.51 | 897 | 9/10/2019 |
17.2.0.49 | 733 | 9/3/2019 |
17.2.0.47 | 748 | 8/27/2019 |
17.2.0.46 | 869 | 8/22/2019 |
17.2.0.41 | 763 | 8/13/2019 |
17.2.0.40 | 826 | 8/6/2019 |
17.2.0.39 | 801 | 7/30/2019 |
17.2.0.36 | 767 | 7/23/2019 |
17.2.0.35 | 760 | 7/17/2019 |
17.2.0.34 | 968 | 7/11/2019 |
17.2.0.28-beta | 509 | 6/27/2019 |
17.1.0.53 | 795 | 6/25/2019 |
17.1.0.52 | 763 | 6/18/2019 |
17.1.0.51 | 795 | 6/11/2019 |
17.1.0.50 | 786 | 6/4/2019 |
17.1.0.49 | 767 | 5/28/2019 |
17.1.0.48 | 786 | 5/21/2019 |
17.1.0.47 | 1,022 | 5/14/2019 |
17.1.0.44 | 878 | 5/7/2019 |
17.1.0.43 | 905 | 4/30/2019 |
17.1.0.42 | 973 | 4/23/2019 |
17.1.0.41 | 912 | 4/16/2019 |
17.1.0.40 | 943 | 4/9/2019 |
17.1.0.38 | 1,027 | 3/29/2019 |
17.1.0.32-beta | 617 | 3/13/2019 |