Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions knowledge-base/missing-content-pdf-radwordsprocessing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
---
title: Resolving missing content after HTML/DOCX to PDF conversion with WordsProcessing in .NET Standard
description: Learn how to handle missing content in PDF files generated using RadWordsProcessing for Document Processing due to fonts' specifics.
type: how-to
page_title: Fixing Missing Content in PDFs Generated with RadWordsProcessing
slug: missing-content-word-to-pdf-radwordsprocessing
tags: words, processing, document, pdf, font, custom, fixedextensibilitymanager, fontsprovider, netstandard
res_type: kb
ticketid: 1690314
---

## Environment

| Version | Product | Author |
| ---- | ---- | ---- |
| 2025.2.520| Telerik Document Processing|[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|

## Description

When generating PDF files using [RadWordsProcessing]({%slug radwordsprocessing-overview%}) from HTML or DOCX templates, specific content may be **missing** in the output due to the fonts used in the document. This occurs because the .NET Standard version of [RadPdfProcessing]({%slug radpdfprocessing-overview%}) does not have a default mechanism to read fonts. To resolve this issue, the font data must be provided explicitly using the **FixedExtensibilityManager** and a custom implementation of the [FontsProviderBase]({%slug pdfprocessing-implement-fontsprovider%}) class.

This knowledge base article also answers the following questions:
- Why is some text missing in RadWordsProcessing-generated PDFs?
- How do I add support for custom fonts in RadPdfProcessing?
- How can I fix missing content in exported PDF files?

## Solution

To ensure that custom fonts are correctly embedded in the PDF files:

1. **Implement a FontsProvider**:
Create a custom class that inherits from `FontsProviderBase` and override the `GetFontData` method to provide the font data for the required fonts.

Example implementation:
```csharp
internal class FontsProvider : Telerik.Windows.Documents.Extensibility.FontsProviderBase
{
private string fontFolder = Environment.GetFolderPath(Environment.SpecialFolder.Fonts);

public override byte[] GetFontData(Telerik.Windows.Documents.Core.Fonts.FontProperties fontProperties)
{
string fontFamilyName = fontProperties.FontFamilyName;
bool isBold = fontProperties.FontWeight == Telerik.Documents.Core.Fonts.FontWeights.Bold;
if (fontFamilyName == "David")
{
fontFolder = @"..\..\..\";
var fontData = this.GetFontDataFromFontFolder("David.ttf");
fontFolder = Environment.GetFolderPath(Environment.SpecialFolder.Fonts);
return fontData;
Comment on lines +46 to +49
Copy link

Copilot AI Jun 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid modifying the instance variable 'fontFolder' directly for temporary folder changes, as this could introduce thread-safety issues; consider using a local variable instead.

Suggested change
fontFolder = @"..\..\..\";
var fontData = this.GetFontDataFromFontFolder("David.ttf");
fontFolder = Environment.GetFolderPath(Environment.SpecialFolder.Fonts);
return fontData;
string temporaryFontFolder = @"..\..\..\";
var fontData = this.GetFontDataFromFontFolder(temporaryFontFolder + "\\" + "David.ttf");
return fontData;
return fontData;

Copilot uses AI. Check for mistakes.
}

Debug.WriteLine($"Font not found: {fontFamilyName} (Bold: {isBold})");
return null;
}

private byte[] GetFontDataFromFontFolder(string fontFileName)
{
using (FileStream fileStream = File.OpenRead(this.fontFolder + "\\" + fontFileName))
{
using (MemoryStream memoryStream = new MemoryStream())
{
fileStream.CopyTo(memoryStream);
return memoryStream.ToArray();
}
}
}
}
```

2. **Set the FontsProvider in FixedExtensibilityManager**:
Assign the custom FontsProvider implementation to the `FontsProvider` property of `FixedExtensibilityManager`.

```csharp
Telerik.Windows.Documents.Extensibility.FontsProviderBase fontsProvider = new FontsProvider();
Telerik.Windows.Documents.Extensibility.FixedExtensibilityManager.FontsProvider = fontsProvider;
```

3. **Ensure Font Availability**:
Download and include all necessary font files (e.g., `David.ttf`) used in your document. Place them in an accessible location relative to your application.

4. **Rebuild and Run**:
Integrate the FontsProvider implementation into your application, rebuild, and test the PDF generation process. The previously missing content should now appear in the exported PDF files.

## See Also

- [Implementing FontsProvider]({%slug pdfprocessing-implement-fontsprovider%})
- [Standard Fonts]({%slug radpdfprocessing-concepts-fonts%})
1 change: 1 addition & 0 deletions libraries/radpdfprocessing/cross-platform/fonts.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ You can find a detailed **FixedExtensibilityManager** and **FontsProvider** desc
* [Cross-Platform Support]({%slug radpdfprocessing-cross-platform%})
* [Inserting Special Symbols in PDF using RadPdfProcessing]({%slug inserting-special-symbols-pdf-radpdfprocessing%})
* [How to Eliminate Formatting Issues when Exporting XLSX to PDF Format]({%slug exporting-xlsx-to-pdf-formatting-issues%})
* [Resolving Missing Content in Exported PDF Files]({%slug missing-content-pdf-radwordsprocessing%})