You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-AWS-Elastic-Beanstalk.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: Convert HTML to PDF in AWS Elastic Beanstalk | Syncfusion
3
-
description: Convert HTML to PDF in AWS Elastic Beanstalk using Syncfusion .NET HTML converter library.
3
+
description: Learn how to convert HTML to PDF in AWS Elastic Beanstalk using Syncfusion .NET HTML converter library.
4
4
platform: file-formats
5
5
control: PDF
6
6
documentation: UG
7
7
---
8
8
9
9
# Convert HTML to PDF file in AWS Elastic Beanstalk
10
10
11
-
The Syncfusion [HTML to PDF converter](https://www.syncfusion.com/pdf-framework/net/html-to-pdf) is a .NET library for converting webpages, SVG, MHTML, and HTML to PDF using C#. Using this library, **convert HTML to PDF document using Blink in AWS Elastic Beanstalk**.
11
+
The Syncfusion [HTML to PDF converter](https://www.syncfusion.com/document-processing/pdf-framework/net/html-to-pdf) is a .NET library for converting webpages, SVG, MHTML, and HTML to PDF using C#. Using this library, **convert HTML to PDF document using Blink in AWS Elastic Beanstalk**.
12
12
13
13
## Steps to convert HTML to PDF using Blink in AWS Elastic Beanstalk
Copy file name to clipboardExpand all lines: File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-AWS-Lambda.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: Convert HTML to PDF in AWS Lambda | Syncfusion
3
-
description: Convert HTML to PDF in AWS Lambda using Syncfusion .NET HTML converter library.
3
+
description: Learn here about how to convert HTML to PDF in AWS Lambda using Syncfusion .NET HTML converter library.
4
4
platform: file-formats
5
5
control: PDF
6
6
documentation: UG
7
7
---
8
8
9
9
# Convert HTML to PDF file in AWS Lambda
10
10
11
-
The Syncfusion [HTML to PDF converter](https://www.syncfusion.com/pdf-framework/net/html-to-pdf) is a .NET library for converting webpages, SVG, MHTML, and HTML to PDF using C#. Using this library, **convert HTML to PDF document in AWS Lambda**.
11
+
The Syncfusion [HTML to PDF converter](https://www.syncfusion.com/document-processing/pdf-framework/net/html-to-pdf) is a .NET library for converting webpages, SVG, MHTML, and HTML to PDF using C#. Using this library, **convert HTML to PDF document in AWS Lambda**.
12
12
13
13
Refer to the following steps to convert HTML to PDF in AWS Lambda
Copy file name to clipboardExpand all lines: File-Formats/PDF/Working-with-DigitalSignature.md
+97Lines changed: 97 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4065,4 +4065,101 @@ ldoc.Close(True)
4065
4065
4066
4066
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Digital%20Signature/Get-images-from-the-existing-signed-signature-field).
4067
4067
4068
+
## Integrating signature and timestamp certificates into the Document Secure Store (DSS).
4069
+
4070
+
Effortlessly Integrate **signature and timestamp** certificates into the Document Security Store (DSS) with the Essential PDF Library. This streamlined process enhances certificate management, ensuring robust validation for your PDF documents. Below is a code example demonstrating how to include certificates when creating Long-Term Validity (LTV) from an external signature, utilizing the [CreateLongTermValidity](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Security.PdfSignature.html#Syncfusion_Pdf_Security_PdfSignature_CreateLongTermValidity_System_Collections_Generic_List_System_Security_Cryptography_X509Certificates_X509Certificate2__System_Boolean_) method in the [PdfSignature](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Security.PdfSignature.html) class.
4071
+
4072
+
{% tabs %}
4073
+
4074
+
{% highlight c# tabtitle="C# [Cross-platform]" %}
4075
+
4076
+
//Loads an existing document
4077
+
PdfLoadedDocument document = new PdfLoadedDocument("Input.pdf");
4078
+
//Gets the signature field
4079
+
PdfLoadedSignatureField signatureField = document.Form.Fields[0] as PdfLoadedSignatureField;
4080
+
//Add public Certificates
4081
+
List<X509Certificate2> x509Certificate2s = new List<X509Certificate2>();
Copy file name to clipboardExpand all lines: File-Formats/PDF/Working-with-action.md
+121-1Lines changed: 121 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -253,7 +253,7 @@ document.Close(True)
253
253
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Actions/Add-JavaScript-action-to-the-PDF-document/).
254
254
255
255
N> You can refer more PDF JavaScript code in **PdfJavaScriptAction** from the below developer guide.
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Actions/Reset-form-fields-in-the-PDF-document).
781
781
782
+
## Remote GoTo action:
783
+
784
+
The PdfRemoteGoToAction in a PDF document enables users to navigate to a specific destination within a remote PDF file. This feature seamlessly directs users to specific pages or locations in another PDF document.
785
+
786
+
{% tabs %}
787
+
788
+
{% highlight c# tabtitle="C# [Cross-platform]" %}
789
+
790
+
//Create a new PDF document
791
+
PdfDocument document = new PdfDocument();
792
+
//Create a new page
793
+
PdfPage page = document.Pages.Add();
794
+
//Create font and font style
795
+
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12f, PdfFontStyle.Bold);
796
+
//Create a new PdfButtonField
797
+
PdfButtonField submitButton = new PdfButtonField(page, "submitButton");
798
+
submitButton.Bounds = new RectangleF(25, 160, 100, 20);
799
+
submitButton.Font = font;
800
+
submitButton.Text = "Open file";
801
+
submitButton.BackColor = new PdfColor(181, 191, 203);
802
+
//Create a new remote destination
803
+
PdfRemoteDestination remoteDestination = new PdfRemoteDestination();
Dim goToAction As PdfRemoteGoToAction = New PdfRemoteGoToAction("input.pdf", remoteDestination)
884
+
'Set the IsNewWindow
885
+
goToAction.IsNewWindow = true
886
+
'Add the goToAction
887
+
submitButton.Actions.GotFocus = goToAction
888
+
'Add the submit button to a new document
889
+
document.Form.Fields.Add(submitButton)
890
+
Dim stream As MemoryStream = New MemoryStream
891
+
document.Save(stream)
892
+
stream.Position = 0
893
+
'Close the document
894
+
document.Close(true)
895
+
896
+
{% endhighlight %}
897
+
898
+
{% endtabs %}
899
+
900
+
You can download a complete working sample from [GitHub]
901
+
782
902
## Adding an action to the form field
783
903
784
904
Essential PDF provides support to add various actions to the form fields. The following code example illustrates how to add actions to the form field in PDF document using [PdfFieldActions](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Interactive.PdfFieldActions.html) class.
Copy file name to clipboardExpand all lines: File-Formats/Presentation/Convert-PowerPoint-to-Image-in-MAUI.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,10 @@ documentation: UG
8
8
9
9
# Convert PowerPoint to Image in .NET MAUI
10
10
11
-
Syncfusion PowerPoint is a [.NET MAUI PowerPoint library](https://www.syncfusion.com/powerpoint-framework/maui/powerpoint-library) used to create, read, edit and convert PowerPoint presentation programmatically without **Microsoft PowerPoint** or interop dependencies. Using this library, you can **convert a PowerPoint to image in .NET MAUI**.
11
+
Syncfusion PowerPoint is a [.NET MAUI PowerPoint library](https://www.syncfusion.com/document-processing/powerpoint-framework/maui/powerpoint-library) used to create, read, edit and convert PowerPoint presentation programmatically without **Microsoft PowerPoint** or interop dependencies. Using this library, you can **convert a PowerPoint to image in .NET MAUI**.
12
12
13
13
## Prerequisites
14
-
To create .NET Multi-platform App UI (.NET MAUI) apps, you need the latest versions of Visual Studio 2022 and .NET 6. For more details, refer [here](https://docs.microsoft.com/en-us/dotnet/maui/get-started/installation).
14
+
To create .NET Multi-platform App UI (.NET MAUI) apps, you need the latest versions of Visual Studio 2022 and .NET 6. For more details, refer [here](https://learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-8.0&tabs=vswin).
15
15
16
16
## Steps to convert PowerPoint to Image programmatically
17
17
@@ -174,6 +174,6 @@ Refer the below helper files and add them into the mentioned project. These help
174
174
</tr>
175
175
</table>
176
176
177
-
Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/maui) to explore the rich set of Syncfusion PowerPoint Library (Presentation) features.
177
+
Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/maui/powerpoint-library) to explore the rich set of Syncfusion PowerPoint Library (Presentation) features.
178
178
179
179
An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core.
Step 2: Select a project template and required platforms to deploy the application. In this application the portable assemblies to be shared across multiple platforms, the .NET Standard code sharing strategy has been selected. For more details about code sharing refer [here](https://docs.microsoft.com/en-us/xamarin/cross-platform/app-fundamentals/code-sharing).
19
+
Step 2: Select a project template and required platforms to deploy the application. In this application the portable assemblies to be shared across multiple platforms, the .NET Standard code sharing strategy has been selected. For more details about code sharing refer [here](https://learn.microsoft.com/en-us/xamarin/cross-platform/app-fundamentals/code-sharing).
0 commit comments