New to Telerik Document ProcessingStart a free 30-day trial

Missing symbols in PdfProcessing

Updated on Feb 19, 2026
Product VersionProductAuthor
2020.1.218PdfProcessingDimitar Karamfilov

Problem

This can happen when the characters cannot be found in a specific font. In this case, the RadPdfProcessing either falls back to another font or draws nothing.

Solution

To ensure that these symbols are available you need to embed a font that contains them to the document.

csharp

    var fontData = File.ReadAllBytes(@"..\\..\SegoeUI.ttf");
    FontsRepository.RegisterFont(new FontFamily("Segoe UI"), FontStyles.Normal, FontWeights.Normal, fontData);

    FontBase font;
    FontsRepository.TryCreateFont(new FontFamily("Segoe UI"), FontStyles.Normal, FontWeights.Normal, out font);
In this article
ProblemSolution
Not finding the help you need?
Contact Support