diff --git a/File-Formats/DocIO/word-to-image.md b/File-Formats/DocIO/word-to-image.md index 0fe6661c2..0c6f9077e 100644 --- a/File-Formats/DocIO/word-to-image.md +++ b/File-Formats/DocIO/word-to-image.md @@ -382,6 +382,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which DocIO considers internally when converting a Word document to an Image. @@ -433,6 +435,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Word to Image conversion. @@ -486,6 +490,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a Word document to an Image. @@ -535,6 +541,8 @@ using (FileStream inputStream = new FileStream("Template.docx", FileMode.Open, F {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-Image-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET Word library (DocIO) in Word to Image conversion. diff --git a/File-Formats/DocIO/word-to-pdf.md b/File-Formats/DocIO/word-to-pdf.md index 541615013..253c451ee 100644 --- a/File-Formats/DocIO/word-to-pdf.md +++ b/File-Formats/DocIO/word-to-pdf.md @@ -1772,6 +1772,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which DocIO considers internally when converting a Word document to PDF. @@ -1877,6 +1879,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Word to PDF conversion. @@ -1984,6 +1988,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a Word document to PDF. @@ -2083,6 +2089,8 @@ End Using {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET Word library (DocIO) in Word to PDF conversion. diff --git a/File-Formats/Presentation/Presentation-to-PDF.md b/File-Formats/Presentation/Presentation-to-PDF.md index 27bbe0b5e..6db0144a7 100644 --- a/File-Formats/Presentation/Presentation-to-PDF.md +++ b/File-Formats/Presentation/Presentation-to-PDF.md @@ -430,6 +430,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which Presentation considers internally when converting a PowerPoint presentation to PDF. @@ -542,6 +544,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in presentation to PDF conversion. @@ -653,6 +657,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a PowerPoint presentation to PDF. @@ -753,6 +759,8 @@ pptxDoc.Close() {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-PDF-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET PowerPoint library (Presentation) in Presentation to PDF conversion. diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md index 55b7cee36..e388ca664 100644 --- a/File-Formats/Presentation/Presentation-to-image.md +++ b/File-Formats/Presentation/Presentation-to-image.md @@ -581,6 +581,8 @@ using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Ope {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Initialize-default-fallback-fonts). + ### Fallback fonts based on script type The following code example demonstrates how a user can add fallback fonts based on the script types, which Presentation considers internally when converting a PowerPoint presentation to an Image. @@ -628,6 +630,8 @@ using (FileStream fileStreamInput = new FileStream("Template.pptx", FileMode.Ope {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Fallback-fonts-based-on-scripttype). + ### Fallback fonts for range of Unicode text Users can set fallback fonts for specific Unicode range of text to be used in Presentation to Image conversion. @@ -676,6 +680,8 @@ using (FileStream fileStreamInput = new FileStream(@"Template.pptx", FileMode.Op {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Fallback-fonts-for-Unicode-range). + ### Modify the exiting fallback fonts The following code example demonstrates how user can modify or customize the existing fallback fonts using *FontNames* API while converting a PowerPoint presentation to an Image. @@ -720,6 +726,8 @@ using (FileStream fileStreamInput = new FileStream(@"Template.pptx", FileMode.Op {% endtabs %} +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Modify-the-exiting-fallback-fonts). + ### Supported script types The following table illustrates the supported script types by the .NET PowerPoint library (Presentation) in Presentation to Image conversion.