Skip to content

Commit 845bfa8

Browse files
974525 Modified the readme content for digital signature
1 parent 51b116b commit 845bfa8

File tree

1 file changed

+45
-7
lines changed
  • Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document

1 file changed

+45
-7
lines changed

Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,46 @@
1-
# Digital Signature
1+
# Digital Signature with Syncfusion .NET Core PDF Library
2+
3+
![Digital Signature Banner](https://www.syncfusion.com/content/images/banner/digital-signature.png)
4+
5+
## Table of Contents
6+
- [Video Illustration](#video-illustration)
7+
- [Overview](#overview)
8+
- [Steps to add a digital signature to PDF files](#steps-to-add-a-digital-signature-to-pdf-files)
9+
- [Step 1: Create a New Project](#step-1-create-a-new-project)
10+
- [Step 2: Install NuGet Package](#step-2-install-nuget-package)
11+
- [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+
[![Watch the video](https://img.youtube.com/vi/dQw4w9WgXcQ/0.jpg)]()
23+
24+
25+
## Overview
226

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

529
## Steps to add a digital signature to PDF files
630

731
Follow these steps to digitally sign PDF files using the Syncfusion® library:
832

9-
Step 1: **Create a new project**: Start by creating a new C# Console Application project.
33+
### Step 1: Create a new project:
1034

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

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:
1444

1545
```csharp
1646
using Syncfusion.Pdf;
@@ -21,7 +51,9 @@ Step 3: **Include necessary namespaces**: Add the following namespaces in your `
2151
using Syncfusion.Pdf.Interactive;
2252
```
2353

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:
2557

2658
```csharp
2759
// 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
6597
imageStream.Dispose();
6698
}
6799
```
100+
## GitHub Repository
101+
102+
[![GitHub](https://raw.githubusercontent.com/github/explore/main/topics/github/github.png#gh-dark-mode-only)](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/)
103+
104+
## NuGet Installation
105+
106+
[![NuGet](https://img.shields.io/badge/NuGet-Package-004880?logo=nuget&logoColor=white)](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core) [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core)
68107

69-
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
70109

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

Comments
 (0)