Skip to content

Commit 25d4eea

Browse files
committed
1035740: Changed all interlinking of Syncfusion .NET PDF Library to .NET PDF Library in all the demo pages
1 parent af9b27f commit 25d4eea

20 files changed

Lines changed: 81 additions & 81 deletions

File tree

  • Annotation/Add-popup-annotation-in-a-PDF-document/.NET/Add-popup-annotation-in-a-PDF-document
  • Compression/Compress-the-existing-PDF-document/.NET/Compress-the-existing-PDF-document
  • Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document
  • Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document
  • Getting Started/.NET/Create_PDF_NET/Create_PDF_NET
  • HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document
  • Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF
  • Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream
  • OCR/.NET
    • Perform-OCR-AWS-Textract
    • Perform-OCR-Azure-Vision
    • Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document
  • PDF Conformance/Convert-PDF-to-PDFA-conformance-document/.NET/Convert-PDF-to-PDFA-conformance-document
  • Pages/Splitting-PDF-file-into-individual-pages/.NET/Splitting-PDF-file-into-individual-pages
  • Redaction/Removing-sensitive-content-from-the-PDF-document/.NET/Removing-sensitive-content-from-the-PDF-document
  • Security/Protect-an-existing-PDF-document/.NET/Protect-an-existing-PDF-document
  • Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET/Create-table-from-data-source-in-a-PDF
  • Tagged PDF/Add-tag-for-the-text-element-in-PDF-document/.NET/Add-tag-for-the-text-element-in-PDF-document
  • Text Extraction/Extract-text-from-the-entire-PDF-document/.NET/Extract-text-from-the-entire-PDF-document
  • Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET/Add-text-watermark-in-an-existing-PDF-document

Annotation/Add-popup-annotation-in-a-PDF-document/.NET/Add-popup-annotation-in-a-PDF-document/README.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PDF Annotations
22

3-
The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides powerful tools to create, read, and edit PDF documents. This library also includes features to add, edit, and manage annotations in PDF files, enabling effective markup and collaboration.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) provides powerful tools to create, read, and edit PDF documents. This library also includes features to add, edit, and manage annotations in PDF files, enabling effective markup and collaboration.
44

55
## Steps to add annotations to a PDF
66

@@ -12,46 +12,46 @@ Follow these steps to add a popup annotation to a PDF file using the Syncfusion
1212

1313
3. **Include necessary namespaces**: Add the following namespaces to your `Program.cs` file:
1414

15-
```csharp
16-
using Syncfusion.Drawing;
17-
using Syncfusion.Pdf;
18-
using Syncfusion.Pdf.Graphics;
19-
using Syncfusion.Pdf.Interactive;
20-
using Syncfusion.Pdf.Parsing;
21-
```
15+
```csharp
16+
using Syncfusion.Drawing;
17+
using Syncfusion.Pdf;
18+
using Syncfusion.Pdf.Graphics;
19+
using Syncfusion.Pdf.Interactive;
20+
using Syncfusion.Pdf.Parsing;
21+
```
2222

2323
4. **Code to add annotations**: Use the following code snippet in `Program.cs` to insert annotations into a PDF file:
2424

25-
```csharp
26-
// Create a FileStream object to read the input PDF file
27-
using (FileStream inputFileStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read))
28-
{
29-
// Load the PDF document from the input stream
30-
using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputFileStream))
31-
{
32-
// Access the first page of the PDF document
33-
PdfPageBase loadedPage = loadedDocument.Pages[0];
34-
35-
// Create a new popup annotation
36-
PdfPopupAnnotation popupAnnotation = new PdfPopupAnnotation(new RectangleF(100, 100, 20, 20), "Comment");
37-
38-
// Set the icon for the popup annotation
39-
popupAnnotation.Icon = PdfPopupIcon.Comment;
40-
41-
// Set the color for the popup annotation
42-
popupAnnotation.Color = new PdfColor(Color.Yellow);
43-
44-
// Add the annotation to the page
45-
loadedPage.Annotations.Add(popupAnnotation);
46-
47-
// Save the updated document
48-
using (FileStream outputFileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write))
49-
{
50-
loadedDocument.Save(outputFileStream);
51-
}
52-
}
53-
}
54-
```
25+
```csharp
26+
// Create a FileStream object to read the input PDF file
27+
using (FileStream inputFileStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read))
28+
{
29+
// Load the PDF document from the input stream
30+
using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputFileStream))
31+
{
32+
// Access the first page of the PDF document
33+
PdfPageBase loadedPage = loadedDocument.Pages[0];
34+
35+
// Create a new popup annotation
36+
PdfPopupAnnotation popupAnnotation = new PdfPopupAnnotation(new RectangleF(100, 100, 20, 20), "Comment");
37+
38+
// Set the icon for the popup annotation
39+
popupAnnotation.Icon = PdfPopupIcon.Comment;
40+
41+
// Set the color for the popup annotation
42+
popupAnnotation.Color = new PdfColor(Color.Yellow);
43+
44+
// Add the annotation to the page
45+
loadedPage.Annotations.Add(popupAnnotation);
46+
47+
// Save the updated document
48+
using (FileStream outputFileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write))
49+
{
50+
loadedDocument.Save(outputFileStream);
51+
}
52+
}
53+
}
54+
```
5555

5656
For a complete working example, visit the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET).
5757

Compression/Compress-the-existing-PDF-document/.NET/Compress-the-existing-PDF-document/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Compressing PDF Files
22

3-
The Syncfusion<sup>&reg;</sup> [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows users to seamlessly create, read, and edit PDF documents. Additionally, it offers features for compressing PDF files, which helps reduce their size without sacrificing quality—optimizing storage and enhancing the efficiency of file sharing.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) allows users to seamlessly create, read, and edit PDF documents. Additionally, it offers features for compressing PDF files, which helps reduce their size without sacrificing quality—optimizing storage and enhancing the efficiency of file sharing.
44

55
## Steps to compress PDF files
66

@@ -13,14 +13,14 @@ Step 2: **Install the NuGet package**: Add the [Syncfusion.Pdf.Net.Core](https:/
1313
Step 3: **Add required namespaces**: Include the following namespaces in your `Program.cs` file:
1414

1515
```csharp
16-
using Syncfusion.Pdf.Parsing;
17-
using Syncfusion.Pdf;
16+
using Syncfusion.Pdf.Parsing;
17+
using Syncfusion.Pdf;
1818
```
1919

2020
Step 4: **Implement PDF compression**: Use the following code snippet in `Program.cs` to compress PDF files:
2121

2222
```csharp
23-
//Load the PDF document
23+
//Load the PDF document
2424
using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(Path.GetFullPath(@"Data/Input.pdf")))
2525
{
2626
// Create a new PdfCompressionOptions object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Digital Signature
22

3-
The Syncfusion<sup>&reg;</sup> [.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.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-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.
44

55
## Steps to add a digital signature to PDF files
66

Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PDF Forms
22

3-
The Syncfusion<sup>&reg;</sup> [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides an easy way to create, read, and edit PDF documents. It also includes features for creating, filling, and editing PDF forms, which can include interactive form fields and form data.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) provides an easy way to create, read, and edit PDF documents. It also includes features for creating, filling, and editing PDF forms, which can include interactive form fields and form data.
44

55
## Steps to create PDF forms
66

Getting Started/.NET/Create_PDF_NET/Create_PDF_NET/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Create PDF Document
22

3-
The Syncfusion<sup>&reg;</sup> [.NET PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net/pdf-library) used to create PDF document from scratch and saving it to disk or stream. This library also offers functionality to merge, split, stamp, forms, and secure PDF files.
3+
The [.NET PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) used to create PDF document from scratch and saving it to disk or stream. This library also offers functionality to merge, split, stamp, forms, and secure PDF files.
44

55
## Steps to create PDF document
66

HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HTML to PDF Conversion
22

3-
The Syncfusion<sup>&reg;</sup> [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows you to create, read, and edit PDF documents. It also includes functionality for accurately converting HTML content into PDF files.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) allows you to create, read, and edit PDF documents. It also includes functionality for accurately converting HTML content into PDF files.
44

55
## Steps to convert HTML to PDF
66

Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Converting Images to PDF
22

3-
The Syncfusion<sup>&reg;</sup> [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) offers tools to create, read, and edit PDF documents. It also provides functionality to convert images into PDF files, making it easy to integrate image content into your PDF documents.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) offers tools to create, read, and edit PDF documents. It also provides functionality to convert images into PDF files, making it easy to integrate image content into your PDF documents.
44

55
## Steps to convert images to PDF
66

Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Merging PDF Files
22

3-
The Syncfusion<sup>&reg;</sup> [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows you to easily create, read, edit, and merge PDF documents. This library provides a straightforward way to combine multiple PDF files into a single document.
3+
The [.NET Core PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) allows you to easily create, read, edit, and merge PDF documents. This library provides a straightforward way to combine multiple PDF files into a single document.
44

55
## Steps to merge PDF files
66

OCR/.NET/Perform-OCR-AWS-Textract/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Perform OCR with AWS Textract
2-
The [Syncfusion&reg; .NET OCR library](https://www.syncfusion.com/document-processing/pdf-framework/net/pdf-library/ocr-process) supports external engines (AWS Textract) to process the OCR on Images and PDF documents.
2+
The [.NET OCR library](https://www.syncfusion.com/document-sdk/net-pdf-library) supports external engines (AWS Textract) to process the OCR on Images and PDF documents.
33

44
## Steps to perform OCR with AWS Textract
55
1. Create a new .NET Console application project.

OCR/.NET/Perform-OCR-Azure-Vision/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Perform OCR with Azure Vision
22

3-
The [Syncfusion&reg; .NET OCR library](https://www.syncfusion.com/document-processing/pdf-framework/net/pdf-library/ocr-process) supports external engines (Azure Computer Vision) to process the OCR on images and PDF documents.
3+
The [.NET OCR library](https://www.syncfusion.com/document-sdk/net-pdf-library) supports external engines (Azure Computer Vision) to process the OCR on images and PDF documents.
44

55
## Steps to perform OCR with Azure Computer Vision
66
1. Create a new .NET Console application project.

0 commit comments

Comments
 (0)