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: Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md
+45-7Lines changed: 45 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,46 @@
1
-
# Digital Signature
1
+
# Digital Signature with Syncfusion .NET Core PDF Library
-[Step 3: Include Namespaces](#step-3-include-namespaces)
12
+
-[Step 4: Add Digital Signature Code](#step-4-add-digital-signature-code)
13
+
-[GitHub Repository](#github-repository)
14
+
-[NuGet Installation](#nuget-installation)
15
+
-[Installer & License](#installer--license)
16
+
-[Documentation](#documentation)
17
+
18
+
## 📹 Video Illustration
19
+
20
+
Watch this video to see how to digitally sign PDF files using Syncfusion .NET Core PDF Library:
21
+
22
+
[]()
23
+
24
+
25
+
## Overview
2
26
3
27
The Syncfusion®[.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) offers powerful capabilities for creating, reading, and editing PDF documents. One of its robust features is the ability to apply digital signatures to PDF files, ensuring document authenticity, integrity, and security.
4
28
5
29
## Steps to add a digital signature to PDF files
6
30
7
31
Follow these steps to digitally sign PDF files using the Syncfusion® library:
8
32
9
-
Step 1: **Create a new project**: Start by creating a new C# Console Application project.
33
+
### Step 1: Create a new project:
10
34
11
-
Step 2: **Install the NuGet package**: Add the [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/) package to your project from [NuGet.org](https://www.nuget.org/).
35
+
Start by creating a new C# Console Application project.
12
36
13
-
Step 3: **Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
37
+
### Step 2: Install the NuGet package:
38
+
39
+
Add the [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/) package to your project from [NuGet.org](https://www.nuget.org/).
40
+
41
+
### Step 3: Include necessary namespaces:
42
+
43
+
Add the following namespaces in your `Program.cs` file:
14
44
15
45
```csharp
16
46
usingSyncfusion.Pdf;
@@ -21,7 +51,9 @@ Step 3: **Include necessary namespaces**: Add the following namespaces in your `
21
51
usingSyncfusion.Pdf.Interactive;
22
52
```
23
53
24
-
Step 4: **Add digital signature code**: Use the following code snippet in `Program.cs` to add a digital signature to a PDF file:
54
+
### Step 4: Add digital signature code:
55
+
56
+
Use the following code snippet in `Program.cs` to add a digital signature to a PDF file:
25
57
26
58
```csharp
27
59
// Open the existing PDF document as a stream
@@ -65,7 +97,13 @@ Step 4: **Add digital signature code**: Use the following code snippet in `Progr
65
97
imageStream.Dispose();
66
98
}
67
99
```
100
+
## GitHub Repository
101
+
102
+
[](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Digital%20Signature/Add-a-digital-signature-to-an-existing-document/)[Syncfusion PDF Digital Signature Example](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Digital%20Signature/Add-a-digital-signature-to-an-existing-document/)
For a complete working example, visit the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Digital%20Signature/Add-a-digital-signature-to-an-existing-document/).
108
+
## Installer & License
70
109
71
-
More information about the digital signature can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-digitalsignature) section.
0 commit comments