From 8f140f07dd28c03613f7d6cccca086adb4a42501 Mon Sep 17 00:00:00 2001 From: jeyalakshmit Date: Wed, 20 Sep 2023 16:22:46 +0530 Subject: [PATCH] Added the GitHub sample link-2023 Volume 3 Release --- File-Formats/PDF/Convert-HTML-To-PDF/features.md | 2 ++ File-Formats/PDF/Working-with-DigitalSignature.md | 2 ++ File-Formats/PDF/Working-with-Document.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/File-Formats/PDF/Convert-HTML-To-PDF/features.md b/File-Formats/PDF/Convert-HTML-To-PDF/features.md index dc229e022..db9b3e264 100644 --- a/File-Formats/PDF/Convert-HTML-To-PDF/features.md +++ b/File-Formats/PDF/Convert-HTML-To-PDF/features.md @@ -1798,6 +1798,8 @@ document.Close(True) {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/HTML-Header-and-Footer). + N> Adjust the HTML margin top and bottom values according to the height of the HTML header and footer, as well as the margin settings. ## Temporary path diff --git a/File-Formats/PDF/Working-with-DigitalSignature.md b/File-Formats/PDF/Working-with-DigitalSignature.md index eb31e47fc..e9b41c851 100644 --- a/File-Formats/PDF/Working-with-DigitalSignature.md +++ b/File-Formats/PDF/Working-with-DigitalSignature.md @@ -4042,4 +4042,6 @@ ldoc.Close(True) {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Digital%20Signature/Get-images-from-the-existing-signed-signature-field). + N> This method retrieves the images when rendered on the signed signature field appearance; otherwise, it will return null. \ No newline at end of file diff --git a/File-Formats/PDF/Working-with-Document.md b/File-Formats/PDF/Working-with-Document.md index 502c613ec..1e372a237 100644 --- a/File-Formats/PDF/Working-with-Document.md +++ b/File-Formats/PDF/Working-with-Document.md @@ -725,6 +725,8 @@ document.Close(True) {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/PDF%20Document/Remove-specific-keys-from-the-existing-document-information). + ## Performing incremental update for PDF document The Essential PDF supports incremental update for PDF document. The content of a PDF file can be updated incrementally without rewriting the entire file. Changes are appended to the end of the file, leaving its original contents intact. The main benefit is small changes to a large PDF document can be saved quickly but the resultant document size gets increased compared with the original PDF document. Disabling the [IncrementalUpdate](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfFileStructure.html#Syncfusion_Pdf_PdfFileStructure_IncrementalUpdate) of [PdfFileStructure](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.PdfFileStructure.html) will rewrite the entire file, which results in a smaller PDF. This is illustrated in the following code sample.