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: File-Formats/DocIO/Working-with-Table-Of-Contents.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -988,6 +988,8 @@ End Using
988
988
{% endhighlight %}
989
989
{% endtabs %}
990
990
991
+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Table-Of-Contents/Table_of_figures).
992
+
991
993
By executing the program, you will get the **Word document** as follows.
992
994
993
995

@@ -1273,6 +1275,8 @@ End Using
1273
1275
{% endhighlight %}
1274
1276
{% endtabs %}
1275
1277
1278
+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Table-Of-Contents/Exclude_caption_label_numbers).
1279
+
1276
1280
By executing the program, you will get the **Word document** as follows.
1277
1281
1278
1282

Copy file name to clipboardExpand all lines: File-Formats/PDF/Convert-HTML-To-PDF/features.md
+94-1Lines changed: 94 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2187,4 +2187,97 @@ Refer to the following code snippet to set the timeout for HTML to PDF conversio
2187
2187
2188
2188
{% endtabs %}
2189
2189
2190
-
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Time-out-support-in-HTML-to-PDF/.NET).
2190
+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Time-out-support-in-HTML-to-PDF/.NET).
2191
+
2192
+
## Accessible PDF
2193
+
2194
+
The Blink HTML converter supports preserving tags from HTML to PDF using the EnableAccessibilityTags property in the BlinkConverterSettings class. Refer to the following code sample.
2195
+
2196
+
N> This support fully depends on the Chromium headless browser. Our converter preserves the tags, same as the saved PDF from Chrome.
2197
+
2198
+
{% tabs %}
2199
+
2200
+
{% highlight c# tabtitle="C# [Cross-platform]" %}
2201
+
2202
+
//Initialize HTML to PDF converter.
2203
+
HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
2204
+
//Initialize the BlinkConverterSettings.
2205
+
BlinkConverterSettings settings = new BlinkConverterSettings();
2206
+
//Set true to enable the accessibility tags in PDF generation.
2207
+
settings.EnableAccessibilityTags= true;
2208
+
//Assign the BlinkConverterSettings to the ConverterSettings property of HtmlToPdfConverter.
'Set true to enable the accessibility tags in PDF generation.
2226
+
settings.EnableAccessibilityTags = True
2227
+
'Assign the BlinkConverterSettings to the ConverterSettings property of HtmlToPdfConverter.
2228
+
htmlConverter.ConverterSettings = settings
2229
+
'Convert URL to PDF.
2230
+
Dim document As PdfDocument = htmlConverter.Convert("Input.html")
2231
+
'Save and close the PDF document.
2232
+
Dim fileStream As New FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite)
2233
+
document.Save(fileStream)
2234
+
document.Close(True)
2235
+
2236
+
{% endhighlight %}
2237
+
2238
+
{% endtabs %}
2239
+
2240
+
2241
+
## Image Background
2242
+
2243
+
The Blink HTML converter support adding the image background from HTML to Image using the ImageBackgroundColor property in BlinkConverterSettings class. Refer to the following code sample.
2244
+
2245
+
{% tabs %}
2246
+
2247
+
{% highlight c# tabtitle="C# [Cross-platform]" %}
2248
+
2249
+
//Initialize HTML to PDF converter.
2250
+
HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
2251
+
//Initialize the BlinkConverterSettings.
2252
+
BlinkConverterSettings settings = new BlinkConverterSettings();
Copy file name to clipboardExpand all lines: File-Formats/PDF/Working-with-DigitalSignature.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4065,6 +4065,8 @@ ldoc.Close(True)
4065
4065
4066
4066
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).
4067
4067
4068
+
N> This method retrieves the images when rendered on the signed signature field appearance; otherwise, it will return null.
4069
+
4068
4070
## Integrating signature and timestamp certificates into the Document Secure Store (DSS).
4069
4071
4070
4072
Effortlessly Integrate **signature and timestamp** certificates into the Document Security Store (DSS) with the Essential PDF Library. This streamlined process enhances certificate management, ensuring robust validation for your PDF documents. Below is a code example demonstrating how to include certificates when creating Long-Term Validity (LTV) from an external signature, utilizing the [CreateLongTermValidity](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Security.PdfSignature.html#Syncfusion_Pdf_Security_PdfSignature_CreateLongTermValidity_System_Collections_Generic_List_System_Security_Cryptography_X509Certificates_X509Certificate2__System_Boolean_) method in the [PdfSignature](https://help.syncfusion.com/cr/file-formats/Syncfusion.Pdf.Security.PdfSignature.html) class.
@@ -4162,4 +4164,3 @@ loadedDocument.Close(true)
4162
4164
4163
4165
{% endtabs %}
4164
4166
4165
-
N> This method retrieves the images when rendered on the signed signature field appearance; otherwise, it will return null.
Copy file name to clipboardExpand all lines: File-Formats/Presentation/Working-with-images.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -396,6 +396,8 @@ End Using
396
396
397
397
N> The bounding box properties (ContainerLeft, ContainerTop, ContainerRight, ContainerBottom) must be set before applying the cropping properties for proper functionality.
398
398
399
+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Images/Crop_image).
400
+
399
401
## Removing Images
400
402
401
403
The following code example demonstrates how to remove an existing image in a PowerPoint slide.
0 commit comments