From 3b65d6f0b05cc89a02d8093c29ca218e1ca7e835 Mon Sep 17 00:00:00 2001 From: Sameerkhan Date: Fri, 13 Dec 2024 15:57:23 +0530 Subject: [PATCH 1/2] 921494_ft Resolved Demo failures --- .../Program.cs | 2 + .../README.md | 55 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md diff --git a/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/Program.cs b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/Program.cs index ced00818..eacffcf5 100644 --- a/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/Program.cs +++ b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/Program.cs @@ -1,6 +1,8 @@ // See https://aka.ms/new-console-template for more information using Syncfusion.Drawing; +using Syncfusion.Pdf; +using Syncfusion.Pdf.Graphics; using Syncfusion.Pdf.Interactive; using Syncfusion.Pdf.Parsing; diff --git a/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md new file mode 100644 index 00000000..d778ae85 --- /dev/null +++ b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md @@ -0,0 +1,55 @@ +# PDF Annotations + +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. + +## Steps to add annotations to a PDF + +Follow these steps to add a popup annotation to a PDF file using the Syncfusion library: + +Step 1. **Create a new project**: Set up a new C# Console Application project. + +Step 2. **Install NuGet package**: Add the [Syncfusion.Pdf.Net.Core](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/) package to your .NET Standard application from [NuGet.org](https://www.nuget.org/). + +Step 3. **Include necessary namespaces**: Add the following namespaces to your `Program.cs` file: + + ```csharp + using Syncfusion.Drawing; + using Syncfusion.Pdf; + using Syncfusion.Pdf.Graphics; + using Syncfusion.Pdf.Interactive; + using Syncfusion.Pdf.Parsing; + ``` + +Step 4. **Code to add annotations**: Use the following code snippet in `Program.cs` to insert annotations into a PDF file: + + ```csharp + // Create a FileStream object to read the input PDF file + using (FileStream inputFileStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read)) + { + // Load the PDF document from the input stream + using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputFileStream)) + { + // Access the first page of the PDF document + PdfPageBase loadedPage = loadedDocument.Pages[0]; + + // Create a new popup annotation + PdfPopupAnnotation popupAnnotation = new PdfPopupAnnotation(new RectangleF(100, 100, 20, 20), "Comment"); + // Set the icon for the popup annotation + popupAnnotation.Icon = PdfPopupIcon.Comment; + // Set the color for the popup annotation + popupAnnotation.Color = new PdfColor(Color.Yellow); + // Add the annotation to the page + loadedPage.Annotations.Add(popupAnnotation); + + // Save the updated document + using (FileStream outputFileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write)) + { + loadedDocument.Save(outputFileStream); + } + } + } + ``` + +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). + +To learn more about the extensive features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file From b1dec7875104d186fd0ae278c06e4503acdca20e Mon Sep 17 00:00:00 2001 From: Sameerkhan Date: Fri, 13 Dec 2024 17:05:09 +0530 Subject: [PATCH 2/2] 921494_ft Added UG link. --- .../README.md | 6 +++--- .../README.md | 6 +++--- .../README.md | 6 +++--- .../Add-a-textbox-field-to-a-new-PDF-document/README.md | 4 ++-- .../.NET/Convert-website-URL-to-PDF-document/README.md | 6 +++--- .../.NET/Convert_Image_to_PDF/README.md | 6 +++--- .../.NET/Merge-multiple-documents-from-stream/README.md | 6 +++--- .../Perform-OCR-for-the-entire-PDF-document/README.md | 6 +++--- .../.NET/Convert-PDF-to-PDFA-conformance-document/README.md | 6 +++--- .../.NET/Splitting-PDF-file-into-individual-pages/README.md | 4 ++-- .../README.md | 4 ++-- .../.NET/Protect-an-existing-PDF-document/README.md | 4 ++-- .../.NET/Create-table-from-data-source-in-a-PDF/README.md | 4 ++-- .../Add-tag-for-the-text-element-in-PDF-document/README.md | 4 ++-- .../Extract-text-from-the-entire-PDF-document/README.md | 4 ++-- .../README.md | 4 ++-- 16 files changed, 40 insertions(+), 40 deletions(-) diff --git a/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md index d778ae85..ae4a404b 100644 --- a/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md +++ b/Annotation/Add-a-popup-annotation-to-an-existing-PDF-document/.NET/Add-a-popup-annotation-to-an-existing-PDF-document/README.md @@ -1,10 +1,10 @@ # PDF Annotations -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. +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. ## Steps to add annotations to a PDF -Follow these steps to add a popup annotation to a PDF file using the Syncfusion library: +Follow these steps to add a popup annotation to a PDF file using the Syncfusion® library: Step 1. **Create a new project**: Set up a new C# Console Application project. @@ -52,4 +52,4 @@ Step 4. **Code to add annotations**: Use the following code snippet in `Program. 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). -To learn more about the extensive features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the annotation can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-annotations) section. \ No newline at end of file diff --git a/Compression/Compress-the-images-in-an-existing-PDF-document/.NET/Compress-the-images-in-an-existing-PDF-document/README.md b/Compression/Compress-the-images-in-an-existing-PDF-document/.NET/Compress-the-images-in-an-existing-PDF-document/README.md index b8bed639..bd56a660 100644 --- a/Compression/Compress-the-images-in-an-existing-PDF-document/.NET/Compress-the-images-in-an-existing-PDF-document/README.md +++ b/Compression/Compress-the-images-in-an-existing-PDF-document/.NET/Compress-the-images-in-an-existing-PDF-document/README.md @@ -1,10 +1,10 @@ # Compressing PDF Files -The Syncfusion [.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. +The Syncfusion® [.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. ## Steps to compress PDF files -Follow these steps to compress PDF files using the Syncfusion library: +Follow these steps to compress PDF files using the Syncfusion® library: Step 1: **Create a new project**: Set up a new C# Console Application project. @@ -56,4 +56,4 @@ Step 4: **Implement PDF compression**: Use the following code snippet in `Progra You can download a complete working sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Compression/Compress-the-images-in-an-existing-PDF-document). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the compressing PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-compression) section. \ No newline at end of file diff --git a/Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md b/Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md index c2d9ef3b..2e41ea91 100644 --- a/Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md +++ b/Digital Signature/Add-a-digital-signature-to-an-existing-document/.NET/Add-a-digital-signature-to-an-existing-document/README.md @@ -1,10 +1,10 @@ # Digital Signature -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. +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. ## Steps to add a digital signature to PDF files -Follow these steps to digitally sign PDF files using the Syncfusion library: +Follow these steps to digitally sign PDF files using the Syncfusion® library: Step 1: **Create a new project**: Start by creating a new C# Console Application project. @@ -66,4 +66,4 @@ Step 4: **Add digital signature code**: Use the following code snippet in `Progr 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/). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +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. \ No newline at end of file diff --git a/Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md b/Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md index 05889d87..7d72f760 100644 --- a/Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md +++ b/Forms/Add-a-textbox-field-to-a-new-PDF-document/.NET/Add-a-textbox-field-to-a-new-PDF-document/README.md @@ -1,6 +1,6 @@ # PDF Forms -The Syncfusion [.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. +The Syncfusion® [.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. ## Steps to create PDF forms @@ -65,4 +65,4 @@ Step 4: **Create PDF forms**: Implement the following code in `Program.cs` to ad For a full working example, you can download the sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Forms/Add-a-textbox-field-to-a-new-PDF-document). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the forms can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-forms) section. \ No newline at end of file diff --git a/HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md b/HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md index b41e12e4..2c6df233 100644 --- a/HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md +++ b/HTML to PDF/Blink/Convert-website-URL-to-PDF-document/.NET/Convert-website-URL-to-PDF-document/README.md @@ -1,10 +1,10 @@ # HTML to PDF Conversion -The Syncfusion [.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. +The Syncfusion® [.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. ## Steps to convert HTML to PDF -Follow these steps to convert HTML content into a PDF file using the Syncfusion library: +Follow these steps to convert HTML content into a PDF file using the Syncfusion® library: Step 1: **Create a new project**: Initialize a new C# Console Application project. @@ -37,4 +37,4 @@ Step 4: **Convert HTML to PDF**: Implement the following code in `Program.cs` to You can download a complete working sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Convert-website-URL-to-PDF-document). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the HTML to PDF conversion can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/conversions/html-to-pdf/net/features) section. \ No newline at end of file diff --git a/Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md b/Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md index e971ef16..b04a9964 100644 --- a/Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md +++ b/Images/Convert_Image_to_PDF/.NET/Convert_Image_to_PDF/README.md @@ -1,10 +1,10 @@ # Converting Images to PDF -The Syncfusion [.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. +The Syncfusion® [.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. ## Steps to convert images to PDF -Follow these steps to convert an image into a PDF file using the Syncfusion library: +Follow these steps to convert an image into a PDF file using the Syncfusion® library: Step 1: **Create a new project**: Start a new C# Console Application project. @@ -48,4 +48,4 @@ Step 4: **Convert image to PDF**: Implement the following code in `Program.cs` t You can download a complete working sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Images/Convert_Image_to_PDF/.NET). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the Image to PDF conversion can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/converting-images-to-pdf) section. \ No newline at end of file diff --git a/Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md b/Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md index 2dd51a10..17e889d8 100644 --- a/Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md +++ b/Merge PDFs/Merge-multiple-documents-from-stream/.NET/Merge-multiple-documents-from-stream/README.md @@ -1,10 +1,10 @@ # Merging PDF Files -The Syncfusion [.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. +The Syncfusion® [.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. ## Steps to merge PDF files -Follow these steps to merge PDF files using the Syncfusion library: +Follow these steps to merge PDF files using the Syncfusion® library: Step 1: **Create a new project**: Start by creating a new C# Console Application project. @@ -43,4 +43,4 @@ Step 4: **Merge PDF files**: Use the following code snippet in `Program.cs` to m You can download a complete working sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Merge%20PDFs/Merge-multiple-documents-from-stream/). -To explore additional features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the merge PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/merge-documents) section. \ No newline at end of file diff --git a/OCR/.NET/Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document/README.md b/OCR/.NET/Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document/README.md index adcf986b..0fc683a3 100644 --- a/OCR/.NET/Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document/README.md +++ b/OCR/.NET/Perform-OCR-for-the-entire-PDF-document/Perform-OCR-for-the-entire-PDF-document/README.md @@ -1,10 +1,10 @@ # OCR on PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) enables you to create, read, and edit PDF documents effortlessly. Additionally, the library provides OCR (Optical Character Recognition) capabilities, allowing you to extract text from scanned images within PDF files. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) enables you to create, read, and edit PDF documents effortlessly. Additionally, the library provides OCR (Optical Character Recognition) capabilities, allowing you to extract text from scanned images within PDF files. ## Steps to perform OCR on PDF files -Follow these steps to apply OCR to PDF files using the Syncfusion library: +Follow these steps to apply OCR to PDF files using the Syncfusion® library: Step 1: **Create a new project**: Set up a new C# Console Application project. @@ -48,4 +48,4 @@ Step 4: **Implement OCR Processing**: Use the following code snippet in `Program For a complete working sample, you can download the example from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/OCR/.NET/Perform-OCR-for-the-entire-PDF-document). -To explore more features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the OCR on PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-ocr/features) section. \ No newline at end of file diff --git a/PDF Conformance/Convert-PDF-to-PDFA-conformance-document/.NET/Convert-PDF-to-PDFA-conformance-document/README.md b/PDF Conformance/Convert-PDF-to-PDFA-conformance-document/.NET/Convert-PDF-to-PDFA-conformance-document/README.md index 0931544b..404cb2e3 100644 --- a/PDF Conformance/Convert-PDF-to-PDFA-conformance-document/.NET/Convert-PDF-to-PDFA-conformance-document/README.md +++ b/PDF Conformance/Convert-PDF-to-PDFA-conformance-document/.NET/Convert-PDF-to-PDFA-conformance-document/README.md @@ -1,10 +1,10 @@ # Convert PDF to PDF/A -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. Among its features, the library enables conversion of standard PDF files into the PDF/A format, suitable for long-term archiving and meeting archival standards. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. Among its features, the library enables conversion of standard PDF files into the PDF/A format, suitable for long-term archiving and meeting archival standards. ## Steps to convert a PDF to PDF/A -Follow these steps to convert a PDF document to PDF/A format using the Syncfusion library: +Follow these steps to convert a PDF document to PDF/A format using the Syncfusion® library: Step 1: **Create a new project**: Start by creating a new C# Console Application project. @@ -43,4 +43,4 @@ Step 4: **Convert PDF to PDF/A**: Implement the following code in `Program.cs` t You can download a complete working sample from the [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/PDF%20Conformance/Convert-PDF-to-PDFA-conformance-document). -To explore additional features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the PDF conformance can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-pdf-conformance) section. \ No newline at end of file diff --git a/Pages/Splitting-PDF-file-into-individual-pages/.NET/Splitting-PDF-file-into-individual-pages/README.md b/Pages/Splitting-PDF-file-into-individual-pages/.NET/Splitting-PDF-file-into-individual-pages/README.md index 42322a1c..11ed1c99 100644 --- a/Pages/Splitting-PDF-file-into-individual-pages/.NET/Splitting-PDF-file-into-individual-pages/README.md +++ b/Pages/Splitting-PDF-file-into-individual-pages/.NET/Splitting-PDF-file-into-individual-pages/README.md @@ -1,6 +1,6 @@ # Split PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows for creating, reading, and editing PDF documents, as well as splitting them into separate files. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows for creating, reading, and editing PDF documents, as well as splitting them into separate files. ## Steps to split PDF files @@ -47,4 +47,4 @@ Step 4: **Split the PDF file:** Implement the following code in **Program.cs** t You can download a complete working sample from [GitHub repository](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Pages/Splitting-PDF-file-into-individual-pages/). -To explore additional features of the Syncfusion PDF library, click [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the split PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/split-documents) section. \ No newline at end of file diff --git a/Redaction/Removing-sensitive-content-from-the-PDF-document/.NET/Removing-sensitive-content-from-the-PDF-document/README.md b/Redaction/Removing-sensitive-content-from-the-PDF-document/.NET/Removing-sensitive-content-from-the-PDF-document/README.md index 4a3675c1..a5ba7bc0 100644 --- a/Redaction/Removing-sensitive-content-from-the-PDF-document/.NET/Removing-sensitive-content-from-the-PDF-document/README.md +++ b/Redaction/Removing-sensitive-content-from-the-PDF-document/.NET/Removing-sensitive-content-from-the-PDF-document/README.md @@ -1,6 +1,6 @@ # Redacting PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows users to create, read, and edit PDFs seamlessly. One of its key features is the ability to redact PDF content, enabling the permanent removal or hiding of sensitive information while maintaining the rest of the document's integrity. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) allows users to create, read, and edit PDFs seamlessly. One of its key features is the ability to redact PDF content, enabling the permanent removal or hiding of sensitive information while maintaining the rest of the document's integrity. ## Steps to Redact PDF Files @@ -49,4 +49,4 @@ Step 4: **Implement redaction**: Use the following code in **Program.cs** to per You can download a complete working example from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Redaction/Removing-sensitive-content-from-the-PDF-document/). -Discover more features of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the redacting PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-redaction) section. \ No newline at end of file diff --git a/Security/Protect-an-existing-PDF-document/.NET/Protect-an-existing-PDF-document/README.md b/Security/Protect-an-existing-PDF-document/.NET/Protect-an-existing-PDF-document/README.md index 10042274..27604727 100644 --- a/Security/Protect-an-existing-PDF-document/.NET/Protect-an-existing-PDF-document/README.md +++ b/Security/Protect-an-existing-PDF-document/.NET/Protect-an-existing-PDF-document/README.md @@ -1,6 +1,6 @@ # Protect PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. It also allows you to protect your PDF files by applying encryption and setting password-based permissions. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. It also allows you to protect your PDF files by applying encryption and setting password-based permissions. ## Steps to Protect PDF Files @@ -48,4 +48,4 @@ Step 4: **Implement encryption**: Use the following code in **Program.cs** to se You can download a complete working example from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Security/Protect-an-existing-PDF-document/). -Explore more capabilities of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the protect PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-security) section. \ No newline at end of file diff --git a/Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET/Create-table-from-data-source-in-a-PDF/README.md b/Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET/Create-table-from-data-source-in-a-PDF/README.md index 5239ea5a..c99d0c8e 100644 --- a/Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET/Create-table-from-data-source-in-a-PDF/README.md +++ b/Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET/Create-table-from-data-source-in-a-PDF/README.md @@ -1,6 +1,6 @@ # PDF Tables -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) facilitates the creation, reading, and editing of PDF documents. It also provides features to create and customize tables within PDF files, allowing for efficient data organization and presentation. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) facilitates the creation, reading, and editing of PDF documents. It also provides features to create and customize tables within PDF files, allowing for efficient data organization and presentation. ## Steps to Add a Table to a PDF Document @@ -52,4 +52,4 @@ Step 4: **Add a table to the PDF**: Use the following code in **Program.cs** to A complete working example is available on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Table/PdfGrid/Create-table-from-data-source-in-a-PDF/.NET). -Explore more features of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the PDF tables can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-tables) section. \ No newline at end of file diff --git a/Tagged PDF/Add-tag-for-the-text-element-in-PDF-document/.NET/Add-tag-for-the-text-element-in-PDF-document/README.md b/Tagged PDF/Add-tag-for-the-text-element-in-PDF-document/.NET/Add-tag-for-the-text-element-in-PDF-document/README.md index 770f5901..3eddf6ed 100644 --- a/Tagged PDF/Add-tag-for-the-text-element-in-PDF-document/.NET/Add-tag-for-the-text-element-in-PDF-document/README.md +++ b/Tagged PDF/Add-tag-for-the-text-element-in-PDF-document/.NET/Add-tag-for-the-text-element-in-PDF-document/README.md @@ -1,6 +1,6 @@ # Accessible PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) facilitates the creation, reading, and editing of PDF documents. It also offers features for generating accessible PDFs that adhere to accessibility standards, making content accessible to individuals with disabilities. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) facilitates the creation, reading, and editing of PDF documents. It also offers features for generating accessible PDFs that adhere to accessibility standards, making content accessible to individuals with disabilities. ## Steps to Create Accessible PDF Files @@ -60,4 +60,4 @@ Step 4: **Implement accessibility**: Use the following code in **Program.cs** to You can download a complete working example from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Tagged%20PDF/Add-tag-for-the-text-element-in-PDF-document). -Discover more features of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the accessible PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-tagged-pdf) section. \ No newline at end of file diff --git a/Text Extraction/Extract-text-from-the-entire-PDF-document/.NET/Extract-text-from-the-entire-PDF-document/README.md b/Text Extraction/Extract-text-from-the-entire-PDF-document/.NET/Extract-text-from-the-entire-PDF-document/README.md index 386b6769..2f2e0cf6 100644 --- a/Text Extraction/Extract-text-from-the-entire-PDF-document/.NET/Extract-text-from-the-entire-PDF-document/README.md +++ b/Text Extraction/Extract-text-from-the-entire-PDF-document/.NET/Extract-text-from-the-entire-PDF-document/README.md @@ -1,6 +1,6 @@ # Extract Data from PDF -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) enables the creation, reading, and editing of PDF documents. Additionally, it provides capabilities to extract data from PDFs, such as text, images, and form field values. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) enables the creation, reading, and editing of PDF documents. Additionally, it provides capabilities to extract data from PDFs, such as text, images, and form field values. ## Steps to Extract Data from PDF Files @@ -41,4 +41,4 @@ Step 4: **Extract data from PDF**: Use the following code in **Program.cs** to e For a complete working example, download it from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Text%20Extraction/Extract-text-from-the-entire-PDF-document/). -Explore more features of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the extract data can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-text-extraction) section. \ No newline at end of file diff --git a/Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET/Add-text-watermark-in-an-existing-PDF-document/README.md b/Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET/Add-text-watermark-in-an-existing-PDF-document/README.md index 178db009..1cc3d159 100644 --- a/Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET/Add-text-watermark-in-an-existing-PDF-document/README.md +++ b/Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET/Add-text-watermark-in-an-existing-PDF-document/README.md @@ -1,6 +1,6 @@ # Edit PDF Files -The Syncfusion [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. It also supports modifying existing PDF files, including updating text, images, and other content. +The Syncfusion® [.NET Core PDF library](https://www.syncfusion.com/document-processing/pdf-framework/net-core/pdf-library) provides tools for creating, reading, and editing PDF documents. It also supports modifying existing PDF files, including updating text, images, and other content. ## Steps to Add a Watermark to a PDF File @@ -60,4 +60,4 @@ Step 4: **Add a watermark to the PDF**: Use the following code snippet in **Prog You can download a complete working example from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Watermark/Add-text-watermark-in-an-existing-PDF-document/.NET). -Explore more features of the Syncfusion PDF library [here](https://www.syncfusion.com/document-processing/pdf-framework/net-core). \ No newline at end of file +More information about the edit PDF can be found in this [documentation](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/working-with-watermarks) section. \ No newline at end of file