New to Telerik Document ProcessingStart a free 30-day trial

Fixing Missing Text with Specific Cultures

Updated on Apr 24, 2026

Environment

VersionProductAuthor
2024.3.806RadPdfProcessingDesislava Yordanova

Description

When loading some PDF documents with German culture, part of the text got missing. It is possible to observe the following error: The dimensions of this page are out-of-range. Page content might be truncated. When importing a PDF file using RadFixedDocument with PdfFormatProvider, the document may recognize an incorrect size. For example, an A4-sized document may display a width value thousands of times larger than expected. This issue can occur due to culture settings on the machine (e.g. German).

This knowledge base article also answers the following questions:

  • How to fix the incorrect document size when using PdfFormatProvider in RadFixedDocument?
  • Why does RadFixedDocument import PDFs with wrong size values?
  • How to ensure the correct document size during import with RadFixedDocument?

Solution

To resolve the incorrect document size issue, follow these steps:

Option 1: Set English Culture Before Import

Add the following code before loading the document:

csharp
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");

Option 2: Version Upgrade

  1. Download and install the preview version 2024.4.1127 (or newer).
  2. Use this version to render and process the PDF.

See Also