Unplanned
Last Updated: 17 Oct 2023 10:48 by Jean-Christian
Created by: Jean-Christian
Comments: 0
Category: PdfProcessing
Type: Bug Report
0
Nested tables cause cropped borders of the child table. The outside borders of the child table are half the width.
Completed
Last Updated: 31 Oct 2023 06:15 by ADMIN
Release R3 2023 SP1
When concurrent accessing the FontsRepository`s RegisterFont (private) method from different threads an exception is thrown: System.IndexOutOfRangeException: 'Index was outside the bounds of the array.'
Completed
Last Updated: 11 Dec 2023 07:41 by ADMIN
Release R3 2023 SP1
Endless loop when trying to parse image data between ID and EI keywords.
Unplanned
Last Updated: 16 Nov 2023 10:52 by ADMIN

When loading a PDF generated with PdfProcessing in PDF Accessibility Checker 2021 (PAC) an exception is thrown: "Object reference not set to an instance of an object".

It is reproducible with all PdfComplianceLevel export options.

Duplicated
Last Updated: 06 Dec 2024 16:43 by ADMIN
InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfArray' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName'.'
when parsing a specific document.
Completed
Last Updated: 27 Sep 2023 08:28 by ADMIN
Release R3 2023

InvalidCastException caused by colorspace defined as nested indirect objects.

Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.IndirectReference' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName'.

Completed
Last Updated: 24 Oct 2023 08:50 by ADMIN
Release R3 2023 SP1

Importing a document containing an EI keyword not followed by space or return leads to an endless loop and the document is not imported successfully.

Expected:

Actual:

Unplanned
Last Updated: 13 Sep 2023 08:31 by Jon
Enabling FIPS causes all signatures to be displayed as invalid or unknown. In addition, some signatures are displayed as unknown but Adobe verifies them.
Unplanned
Last Updated: 31 Aug 2023 10:04 by Shreya
Created by: Shreya
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Introduce support for reading barcodes from images.
Completed
Last Updated: 02 Aug 2024 11:08 by ADMIN
Release 2024.3.802 (2024 Q3)
WIth specific documents, the text is exported with the wrong position when exporting document pages to images using the SkiaImageFormatProvider.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)

Some documents loaded through WordsProcessing and then exported to a RadFixedDocument by utilizing the ExportToFixedDocument() method, fails on export through ImageFormatProvider with System.AggregateException.

As a workaround, you can export the RadFixedDocument to a PDF and then import it again before exporting it to an image.

var pdfFixedProvider = new Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider();
bytes = pdfFixedProvider.Export(fixedDocument);
fixedDocument = pdfFixedProvider.Import(bytes);

 

Completed
Last Updated: 08 Sep 2023 12:25 by ADMIN
Release R3 2023
InvalidDataException: 'Unknown compression method (0x31)' when decompressing a Shrunk stream
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
PdfProcessing: Invalid annotation position leads to missing content.
Completed
Last Updated: 12 Sep 2023 07:23 by ADMIN
Release R3 2023
When importing and merging documents the fonts are extracted directly from the files and can duplicate if the files contain exactly the same fonts/subsets.
Unplanned
Last Updated: 16 Aug 2023 08:17 by Nitya
Created by: Nitya
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
When importing and merging documents the fonts are extracted directly from the files and can duplicate if the files contain the same fonts.
Declined
Last Updated: 15 Nov 2023 12:58 by ADMIN
Created by: Gary
Comments: 3
Category: PdfProcessing
Type: Bug Report
0
When flattening a document with esignature the signature gets removed. Digital signatures remain, but esignatures do not.
Completed
Last Updated: 09 Aug 2023 14:10 by ADMIN
Release R3 2023
When importing a document containing an updated xref table that has an invalid offset an exception is thrown: System.NullReferenceException: 'Object reference not set to an instance of an object.'
Completed
Last Updated: 01 Aug 2023 11:30 by ADMIN
Release R3 2023
When importing a specific document with an invalid offset of the cross-reference table an InvalidOperationException is thrown: System.InvalidOperationException: 'Stack empty.'
Completed
Last Updated: 09 Aug 2023 14:16 by ADMIN
Release R3 2023

When exporting documents containing TrueType Postscript fonts perceived as Standard fonts the fonts should not be embedded but they actually are.

Examples of such fonts are Arial MT, TimesNewRomanPSMT, etc.

Won't Fix
Last Updated: 22 Feb 2024 12:56 by ADMIN

When importing specific documents and signing a predefined SignatureField leads to not successfully validated signatures in Adobe, but successfully validated in other pdf viewers (eg. Telerik WPF PdfViewer, Foxit PDF Reader).

Solution:
When signing an existing document (after the import) we must be sure the AcroForm's ViewersShouldRecalculateWidgetAppearances property is set to false, otherwise, the exported and signed PDF document could not be shown as a signed. 

if (document.AcroForm.ViewersShouldRecalculateWidgetAppearances)
{
	document.AcroForm.ViewersShouldRecalculateWidgetAppearances = false;
}