Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ To resolve this issue, we can install the chromium using the docker file and set
Docker File:<br><br>
{% tabs %}

{% highlight}
{% highlight c# tabtitle="C#" %}

FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base

Expand All @@ -612,16 +612,14 @@ Docker File:<br><br>

Code snippet:

{% highlight}
{% highlight c# tabtitle="C#" %}

BlinkConverterSettings settings = new BlinkConverterSettings();

//To utilize the Blink binaries from the arm64-based chromium installed using the docker file, execute the following command.

settings.BlinkPath = @"/usr/lib/chromium/chromium";



{% endhighlight %}

{% endtabs %}
Expand Down
3 changes: 3 additions & 0 deletions File-Formats/Presentation/Presentation-to-PDF.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ PowerPoint allows you to convert an entire Presentation or a single slide into P
* [Assemblies Information](https://help.syncfusion.com/file-formats/presentation/assemblies-required)
* [NuGet Information](https://help.syncfusion.com/file-formats/presentation/nuget-packages-required#converting-powerpoint-presentation-into-pdf)

To quickly start converting a PowerPoint Presentation to a PDF using .NET PowerPoint libray, please check out this video:
{% youtube "https://www.youtube.com/watch?v=nytscOICpWk" %}

[PresentationToPdfConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.PresentationToPdfConverter.PresentationToPdfConverter.html) class is responsible for converting an entire Presentation or a slide into PDF. The following code example demonstrates how to convert a PowerPoint presentation to PDF.

{% tabs %}
Expand Down
Loading