Completed
Last Updated: 02 Apr 2026 11:47 by ADMIN
Release 2026.1.402 (2026 Q1)
System.InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfStream' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.MarkedContents.ReferencedObject'.'
Completed
Last Updated: 02 Apr 2026 11:49 by ADMIN
Release 2026.1.402 (2026 Q1)
When importing a document with an EmbeddedFile without a Subtype value.
Unplanned
Last Updated: 27 Mar 2026 14:04 by Benjamin
Created by: Benjamin
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

https://loc.gov/preservation/digital/formats/fdd/fdd000532.shtml

PDF/A‑4f is a version of PDF/A designed for archival storage that:

  • Ensures long‑term visual and structural preservation
  • Is based on modern PDF 2.0
  • Allows embedded files (attachments) that are also archival‑compliant 

 

Duplicated
Last Updated: 09 Apr 2026 12:09 by ADMIN
Completed
Last Updated: 14 May 2026 16:33 by ADMIN
Release 2026.2.514 (2026 Q2)
XMP metadata is unescaped during import/export.
Completed
Last Updated: 06 Aug 2026 09:48 by ADMIN
Release 2026.2.519 (2026 Q2)

NetStandard: Missing content due to empty glyph outlines in embedded TrueType font subsets.

Workaround 1

Fully embed the fonts in the result PDF document:

PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
pdfFormatProvider.ExportSettings.FontEmbeddingType = FontEmbeddingType.Full;

Workaround 2

Switch to a .NET Framework project environment and use the .NET Framework PdfProcessing packages.

Completed
Last Updated: 14 May 2026 16:33 by ADMIN
Release 2026.2.514 (2026 Q2)
NullReferenceException is thrown then exporting a document with a Type 3 font with missing/invalid Unicode mapping.
Completed
Last Updated: 24 Jun 2026 10:31 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)
Created by: Stefan
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

Here is a sample structure of the signature: 

/Type /Sig
/SubFilter /adbe.x509.rsa_sha1
/Filter /Adobe.PPKMS

Completed
Last Updated: 24 Jun 2026 10:31 by ADMIN
Release Scheduled For = 2026.2.624 (2026 Q2)
Created by: Giovanni Rojas
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
Add support for Encryption Algorithm 7.
Completed
Last Updated: 07 Jul 2026 13:48 by ADMIN
Release 2026.2.707 (2026 Q2)
NullReferenceException is thrown when importing a document with missing Owner (O) in tagged structure attributes.
Completed
Last Updated: 07 Jul 2026 13:48 by ADMIN
Release 2026.2.707 (2026 Q2)
PdfProcessing: Signature validation reports file as "modified" while Adobe Acrobat reports "not modified".
Completed
Last Updated: 07 Jul 2026 13:48 by ADMIN
Release 2026.2.707 (2026 Q2)

InvalidOperationException is thrown when exporting a PDF document with a set compliance that processes Type3 font glyphs.

Workaround: Before export, set compliance to None.

var provider = new PdfFormatProvider();
provider.ExportSettings.ComplianceLevel = PdfComplianceLevel.None;

 

Completed
Last Updated: 26 Aug 2026 12:27 by ADMIN
Release 2026.3.826 (2026 Q3)
InvalidCastException is thrown when importing a document that contains structure elements (StructElem) with StructureType (/S) defined with an incorrect integer type (PdfInt) instead of the expected PdfName type.
In Development
Last Updated: 09 Sep 2026 11:27 by ADMIN

Endless loop on PDF export when an empty string is assigned to text fields with no source /V and auto-sized default appearance (/DA with 0 Tf).

Workaround: Instead of an empty string (""), set the value to null. Or don't set it at all and leave it unmodified.

Completed
Last Updated: 26 Aug 2026 12:27 by ADMIN
Release 2026.3.826 (2026 Q3)
Merging/importing PDFs with duplicate field names can create one logical RadioButtonField containing widgets from multiple source field nodes. The first node initializes its widget options. Reused duplicate nodes can add additional widgets without assigning RadioOption instances.

The widgets then contain valid "/Off" appearance states, but their model Option property is null. During export, FieldPropertiesExporter accesses widget.Option.Value, causing a "NullReferenceException: Object reference not set to an instance of an object."
In Development
Last Updated: 04 Sep 2026 20:32 by ADMIN
When two PDFs containing AcroForm fields are merged with PdfStreamWriter, the generated PDF contains page widget annotations whose parent field dictionaries are not correctly registered in the document-level /AcroForm/Fields tree.

The issue is reproducible by merging the same four-page form twice. The resulting PDF contains all widget annotations, but PDF viewers do not resolve the second form’s interactive fields correctly.
In Development
Last Updated: 14 Sep 2026 14:58 by ADMIN

Wrapped table cell text is incorrectly split by hyphens ("-").

This is a regression introduced in version 2026.3.826. Use an older version to avoid this issue.

In Development
Last Updated: 10 Sep 2026 06:52 by ADMIN
PDF export fails after HTML blocks containing empty or named anchors are imported and inserted into a RadFlowDocument through ReplaceText.

HTML importer creates hyperlink field markers for <a name="...">. During block replacement, cloned FieldCharacter instances lose FieldInfo, leaving orphan field markers. PDF exporter later dereferences FieldInfo and throws a NullReferenceException.
Unplanned
Last Updated: 12 Jan 2017 16:11 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
From R1 2017 all annotations (including sound and video) are supported for import-export scenarios by using PdfStreamWriter class. 

These feedback item will be opened as we may add API for generating and inserting new sound annotations from scratch in the file.
Completed
Last Updated: 02 Jul 2016 21:05 by ADMIN
When a source RadFixedDocument is merged to a target RadFixedDocument, the content of the source document is cleared.