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: Compression/Compress-the-images-in-an-existing-PDF-document/.NET/Compress-the-images-in-an-existing-PDF-document/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,18 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to compress PDF files using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Set up a new C# Console Application project.
9
+
Step 1:**Create a new project**: Set up a new C# Console Application project.
10
10
11
-
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/).
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/).
12
12
13
-
3.**Add required namespaces**: Include the following namespaces in your `Program.cs` file:
13
+
Step 3:**Add required namespaces**: Include the following namespaces in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.Pdf.Parsing;
17
17
usingSyncfusion.Pdf;
18
18
```
19
19
20
-
4.**Implement PDF compression**: Use the following code snippet in `Program.cs` to compress PDF files:
20
+
Step 4:**Implement PDF compression**: Use the following code snippet in `Program.cs` to compress PDF files:
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/Program.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
3
3
usingSyncfusion.Drawing;
4
4
usingSyncfusion.Pdf;
5
+
usingSyncfusion.Pdf.Graphics;
5
6
usingSyncfusion.Pdf.Interactive;
6
7
usingSyncfusion.Pdf.Parsing;
7
8
usingSyncfusion.Pdf.Security;
@@ -29,7 +30,7 @@
29
30
signature.Reason="I am the author of this document.";
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
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,22 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to digitally sign PDF files using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Start by creating a new C# Console Application project.
9
+
Step 1:**Create a new project**: Start by creating a new C# Console Application project.
10
10
11
-
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/).
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/).
12
12
13
-
3.**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
13
+
Step 3:**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.Pdf;
17
17
usingSyncfusion.Pdf.Graphics;
18
18
usingSyncfusion.Pdf.Parsing;
19
19
usingSyncfusion.Pdf.Security;
20
20
usingSyncfusion.Drawing;
21
+
usingSyncfusion.Pdf.Interactive;
21
22
```
22
23
23
-
4.**Add digital signature code**: Use the following code snippet in `Program.cs` to add a digital signature to a PDF file:
24
+
Step 4:**Add digital signature code**: Use the following code snippet in `Program.cs` to add a digital signature to a PDF file:
Copy file name to clipboardExpand all lines: Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to create a PDF form with a textbox field:
8
8
9
-
1.**Create a new project**: Start by creating a new C# Console Application project.
9
+
Step 1:**Create a new project**: Start by creating a new C# Console Application project.
10
10
11
-
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/).
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/).
12
12
13
-
3.**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
13
+
Step 3:**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.Drawing;
@@ -19,7 +19,7 @@ Follow these steps to create a PDF form with a textbox field:
19
19
usingSyncfusion.Pdf.Interactive;
20
20
```
21
21
22
-
4.**Create PDF forms**: Implement the following code in `Program.cs` to add a textbox field to a PDF document:
22
+
Step 4:**Create PDF forms**: Implement the following code in `Program.cs` to add a textbox field to a PDF document:
Copy file name to clipboardExpand all lines: HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,19 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to convert HTML content into a PDF file using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Initialize a new C# Console Application project.
9
+
Step 1:**Create a new project**: Initialize a new C# Console Application project.
10
10
11
-
2.**Install the NuGet package**: Add the [Syncfusion.HtmlToPdfConverter.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Net.Windows) package as a reference in your .NET Standard application from [NuGet.org](https://www.nuget.org/).
11
+
Step 2:**Install the NuGet package**: Add the [Syncfusion.HtmlToPdfConverter.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Net.Windows) package as a reference in your .NET Standard application from [NuGet.org](https://www.nuget.org/).
12
12
13
-
3.**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
13
+
Step 3:**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.HtmlConverter;
17
17
usingSyncfusion.Pdf;
18
18
usingSystem.Runtime.InteropServices;
19
19
```
20
20
21
-
4.**Convert HTML to PDF**: Implement the following code in `Program.cs` to convert a website URL to a PDF file:
21
+
Step 4:**Convert HTML to PDF**: Implement the following code in `Program.cs` to convert a website URL to a PDF file:
Copy file name to clipboardExpand all lines: Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to convert an image into a PDF file using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Start a new C# Console Application project.
9
+
Step 1:**Create a new project**: Start a new C# Console Application project.
10
10
11
-
2.**Install the NuGet package**: Add the [Syncfusion.Pdf.Imaging.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Imaging.Net.Core) package as a reference to your project from [NuGet.org](https://www.nuget.org/).
11
+
Step 2:**Install the NuGet package**: Add the [Syncfusion.Pdf.Imaging.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Imaging.Net.Core) package as a reference to your project from [NuGet.org](https://www.nuget.org/).
12
12
13
-
3.**Include necessary namespaces**: Add the following namespace in your `Program.cs` file:
13
+
Step 3:**Include necessary namespaces**: Add the following namespace in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.Pdf;
17
17
```
18
18
19
-
4.**Convert image to PDF**: Implement the following code in `Program.cs` to convert an image into a PDF file:
19
+
Step 4:**Convert image to PDF**: Implement the following code in `Program.cs` to convert an image into a PDF file:
20
20
21
21
```csharp
22
22
// Create an instance of the ImageToPdfConverter class
Copy file name to clipboardExpand all lines: Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to merge PDF files using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Start by creating a new C# Console Application project.
9
+
Step 1:**Create a new project**: Start by creating a new C# Console Application project.
10
10
11
-
2.**Install the NuGet package**: Reference the [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/) package in your project from [NuGet.org](https://www.nuget.org/).
11
+
Step 2:**Install the NuGet package**: Reference the [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/) package in your project from [NuGet.org](https://www.nuget.org/).
12
12
13
-
3.**Include required namespaces**: Add the following namespace in your `Program.cs` file:
13
+
Step 3:**Include required namespaces**: Add the following namespace in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.Pdf;
17
17
```
18
18
19
-
4.**Merge PDF files**: Use the following code snippet in `Program.cs` to merge PDF files:
19
+
Step 4:**Merge PDF files**: Use the following code snippet in `Program.cs` to merge PDF files:
20
20
21
21
```csharp
22
22
// Create a PDF document for the final merged output
Copy file name to clipboardExpand all lines: OCR/.NET/Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,18 @@ The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-proce
6
6
7
7
Follow these steps to apply OCR to PDF files using the Syncfusion library:
8
8
9
-
1.**Create a new project**: Set up a new C# Console Application project.
9
+
Step 1:**Create a new project**: Set up a new C# Console Application project.
10
10
11
-
2.**Install the NuGet package**: Add the [Syncfusion.PDF.OCR.Net.Core](https://www.nuget.org/packages/Syncfusion.PDF.OCR.Net.Core) package as a reference in your project from [NuGet.org](https://www.nuget.org/).
11
+
Step 2:**Install the NuGet package**: Add the [Syncfusion.PDF.OCR.Net.Core](https://www.nuget.org/packages/Syncfusion.PDF.OCR.Net.Core) package as a reference in your project from [NuGet.org](https://www.nuget.org/).
12
12
13
-
3.**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
13
+
Step 3:**Include necessary namespaces**: Add the following namespaces in your `Program.cs` file:
14
14
15
15
```csharp
16
16
usingSyncfusion.OCRProcessor;
17
17
usingSyncfusion.Pdf.Parsing;
18
18
```
19
19
20
-
4.**Implement OCR Processing**: Use the following code snippet in `Program.cs` to perform OCR on a PDF document:
20
+
Step 4:**Implement OCR Processing**: Use the following code snippet in `Program.cs` to perform OCR on a PDF document:
0 commit comments