Skip to content

Commit 23da230

Browse files
Modified the README files
1 parent 3be8c0a commit 23da230

4 files changed

Lines changed: 27 additions & 26 deletions

File tree

  • Data-Extraction
    • Smart-Data-Extractor
      • Extract-data-as-JSON-from-PDF/.NET/Extract-data-as-JSON-from-PDF-document
      • Extract-data-as-md-from-PDF/.NET/Extract-data-as-md-from-PDF
    • Smart-Form-Recognizer/Recognize-forms-using-JSON/.NET/Recognize-forms-using-JSON
    • Smart-Table-Extractor/Extract-tables-from-pdf-document/.NET/Extract-tables-from-pdf-document

Data-Extraction/Smart-Data-Extractor/Extract-data-as-JSON-from-PDF/.NET/Extract-data-as-JSON-from-PDF-document/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Create Word document using C#
1+
# Extract Structured Data from PDF
22

3-
The Syncfusion® Smart Data Extractor is a .NET library used to extract structured data and document elements from PDFs and images in Console Application.
3+
The Syncfusion® [Smart Data Extractor](https://www.syncfusion.com/document-sdk/net-pdf-data-extraction) is a .NET library used to extract document structures such as hierarchies, text blocks, images, headers, and footers from PDFs and scanned images by analyzing visual layout patterns like lines, boxes, and alignment. It returns structured JSON with per-field confidence scores
44

5-
## Steps to Extract Data from PDF in Console App
5+
## Steps to Extract Structured Data from PDF Files
66

7-
Step 1: Create a new .NET Core console application project.
7+
Step 1: **Create a new project:** Begin by setting up a new C# Console Application project.
88

9-
Step 2: Install the [Syncfusion.SmartDataExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartDataExtractor.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
9+
Step 2: **Install the NuGet package:** Add the [Syncfusion.SmartDataExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartDataExtractor.Net.Core) package to your project from [NuGet.org](https://www.nuget.org/).
1010

11-
Step 3: Include the following namespaces in the Program.cs file.
11+
Step 3: **Include necessary namespaces:** Add these namespaces in your Program.cs file:
1212

1313
```csharp
1414
using System.IO;
@@ -32,5 +32,6 @@ using (FileStream stream = new FileStream(Path.GetFullPath("Input.pdf"), FileMod
3232
}
3333

3434
```
35+
For a complete working example, download it from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Data-Extraction/Smart-Data-Extractor/Extract-data-as-JSON-from-PDF/.NET).
3536

3637
More information about Extract data from PDF can be refer in this [documentation](https://help.syncfusion.com/document-processing/data-extraction/smart-data-extractor/overview)section.

Data-Extraction/Smart-Data-Extractor/Extract-data-as-md-from-PDF/.NET/Extract-data-as-md-from-PDF/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Create Word document using C#
1+
# Extract Structured Data from PDF as Markdown
22

3-
The Syncfusion® Smart Data Extractor is a .NET library used to extract structured data and document elements from PDFs and images in Console Application.
3+
The Syncfusion® [Smart Data Extractor](https://www.syncfusion.com/document-sdk/net-pdf-data-extraction) is a .NET library that extracts document structures such as hierarchies, text blocks, images, headers, and footers from PDFs and scanned images by analyzing visual layout patterns like lines, boxes, and alignment.
44

5-
## Steps to Extract Data from PDF in Console App
5+
## Steps to Extract Data as Markdown from PDF Files
66

7-
Step 1: Create a new .NET Core console application project.
7+
Step 1: **Create a new project:** Begin by setting up a new C# Console Application project.
88

9-
Step 2: Install the [Syncfusion.SmartDataExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartDataExtractor.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
9+
Step 2: **Install the NuGet package:** Add the [Syncfusion.SmartDataExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartDataExtractor.Net.Core) package to your project from [NuGet.org](https://www.nuget.org/).
1010

11-
Step 3: Include the following namespaces in the Program.cs file.
11+
Step 3: **Include necessary namespaces:** Add these namespaces in your Program.cs file:
1212

1313
```csharp
1414
using System.IO;
@@ -32,5 +32,4 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
3232
}
3333

3434
```
35-
3635
More information about Extract data from PDF can be refer in this [documentation](https://help.syncfusion.com/document-processing/data-extraction/smart-data-extractor/overview)section.

Data-Extraction/Smart-Form-Recognizer/Recognize-forms-using-JSON/.NET/Recognize-forms-using-JSON/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Create Word document using C#
1+
# Recognize Form Data from PDF using C#
22

3-
The Syncfusion® Smart Form Recognizer is a .NET C# library that detects and extracts structured form data from PDFs and images in Console Application.
3+
The Syncfusion® [Smart Form Recognizer](https://www.syncfusion.com/document-sdk/net-pdf-data-extraction) is a .NET C# library that detects form regions and extracts text fields, checkboxes, radio buttons, and signatures by interpreting visual patterns such as boxes and selection markers. The extracted results are returned as normalized JSON with confidence scores, enabling applications to automatically process form data.
44

5-
## Steps to Extract Data from PDF in Console App
5+
## Steps to Recognize Form Data from PDF Files
66

7-
Step 1: Create a new .NET Core console application project.
7+
Step 1: **Create a new project:** Begin by setting up a new C# Console Application project.
88

9-
Step 2: Install the [Syncfusion.SmartFormRecognizer.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartFormRecognizer.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
9+
Step 2: **Install the NuGet package:** Add the [Syncfusion.SmartFormRecognizer.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartFormRecognizer.Net.Core) package to your project from [NuGet.org](https://www.nuget.org/).
1010

11-
Step 3: Include the following namespaces in the Program.cs file.
11+
Step 3: **Include necessary namespaces:** Add these namespaces in your Program.cs file:
1212

1313
```csharp
1414
using System.IO;
@@ -29,5 +29,6 @@ using (FileStream inputStream = new FileStream(Path.GetFullPath(@"Input.pdf"), F
2929
File.WriteAllText(Path.GetFullPath(@"Output.json"),outputJson);
3030
}
3131
```
32+
For a complete working example, download it from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Data-Extraction/Smart-Form-Recognizer/Recognize-forms-using-JSON/.NET).
3233

3334
More information about SmartFormRecognizer can be refer in this [documentation](https://help.syncfusion.com/document-processing/data-extraction/smart-form-recognizer/overview)section.

Data-Extraction/Smart-Table-Extractor/Extract-tables-from-pdf-document/.NET/Extract-tables-from-pdf-document/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
# Create Word document using C#
1+
# Extract Structured Table Data from PDF using C#
22

3-
The Syncfusion® Smart Table Extractor is a .NET library used to extract table data from PDFs and images in Console Application.
3+
The Syncfusion® [Smart Table Extractor](https://www.syncfusion.com/document-sdk/net-pdf-data-extraction) is a .NET library used to extract table data from PDFs and images.
44

5-
## Steps to Extract Data from PDF in Console App
5+
## Steps to Structured Table Data from PDF Files
66

7-
Step 1: Create a new .NET Core console application project.
7+
Step 1: **Create a new project:** Begin by setting up a new C# Console Application project.
88

9-
Step 2: Install the [Syncfusion.SmartTableExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartTableExtractor.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10-
11-
Step 3: Include the following namespaces in the Program.cs file.
9+
Step 2: **Install the NuGet package:** Add the [Syncfusion.SmartTableExtractor.Net.Core](https://www.nuget.org/packages/Syncfusion.SmartTableExtractor.Net.Core) package to your project from [NuGet.org](https://www.nuget.org/).
1210

11+
Step 3: **Include necessary namespaces:** Add these namespaces in your Program.cs file:
1312
```csharp
1413
using System.IO;
1514
using System.Text;
@@ -30,5 +29,6 @@ using (FileStream stream = new FileStream(Path.GetFullPath(@"Input.pdf"), FileMo
3029
File.WriteAllText(Path.GetFullPath(@"Output.json"), data, Encoding.UTF8);
3130
}
3231
```
32+
For a complete working example, download it from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Data-Extraction/Smart-Table-Extractor/Extract-tables-from-pdf-document/.NET).
3333

3434
More information about Extract Table Data from PDF can be refer in this [documentation](https://help.syncfusion.com/document-processing/data-extraction/smart-table-extractor/overview)section.

0 commit comments

Comments
 (0)