Completed
Last Updated: 01 Oct 2019 13:27 by ADMIN
Release 2019.3.1007 (10/07/2019)
When RadPdfViewer is created on UI thread different than the Application main thread, an InvalidOperationException: 'The calling thread cannot access this object because a different thread owns it.' is thrown when calling the Copy method.
Unplanned
Last Updated: 05 Sep 2019 12:53 by ADMIN
The character is visualized as '3'. The same issue is also reproducible when the content is copied from Adobe.
Completed
Last Updated: 03 Sep 2019 08:02 by ADMIN
Release R3 2019
Right now an exception is not raised for gruop3 2d encoding.
Unplanned
Last Updated: 23 Aug 2019 07:06 by ADMIN
When a pdf/a compliant document is opened in Adobe, there is a bar saying that the document is compliant with the standard. Expose such functionality in PdfViewer as well.
Completed
Last Updated: 16 Sep 2020 12:18 by ADMIN
Release R3 2020
Loading document containing link with no destination leads to ArgumentNullException in PdfElementToFixedElementTranslator.CreateDestination method.
Completed
Last Updated: 14 Jun 2021 11:47 by ADMIN
Release R2 2021 SP1
The current implementation relies on valid cross-reference table offsets in the PDF documents so that PDF objects are easily found and parsed. However, a mechanism for importing documents with invalid cross-reference table offsets may be implemented.

The attached project shows how to repair such documents.
Completed
Last Updated: 05 Jul 2023 08:11 by ADMIN
Release R2 2023 SP1

When importing a document with empty pages collection an ArgumentNullException: 'Value cannot be null.
Parameter name: page', is thrown, which leads to application crash.

Workaround: Import the document using the PdfProcessing library and add an empty page:

PdfFormatProvider pdfProcessingFormatProvider = new PdfFormatProvider();
RadFixedDocument document = pdfProcessingFormatProvider.Import(stream);
  
if (document.Pages.Count == 0)
{
    document.Pages.AddPage();
}

 

Completed
Last Updated: 26 Jun 2023 12:20 by ADMIN
Release LIB 2023.2.703 (03 Jul 2023)
The CIDFont dictionary may contain an array, describing the widths of the glyphs. If the width has a negative value an ArgumentException: 'Width and Height must be non-negative.', is thrown when the document is imported in RadPdfViewer, which leads to application crash.
Unplanned
Last Updated: 23 Mar 2021 00:20 by Hashitha
Created by: Michel
Comments: 1
Category: PDFViewer
Type: Feature Request
12
An implementation of JPXDecoder should be created to allow the decompression of data encoded using the wavelet-based JPEG2000 standard.

Guidelines of how to provide a custom implementation of the JPXDecode filter can be found in the Customize Rendering section of the documentation and a sample implementation can be found in the SDK examples.
Completed
Last Updated: 19 Oct 2021 13:47 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
By specification, the InteractiveForm fields can have the same name if they are descendants of a common ancestor. Such fields are different representations of the same underlying field; they should differ only in properties that specify their visual appearance. When such a document is imported an ArgumentException: 'An item with the same key has already been added.' is thrown, which leads to non-editable fields in RadPdfViewer.
Completed
Last Updated: 16 Sep 2020 12:34 by ADMIN
Release R3 2020
The EI keyword defines an operator for ending the image data. When the stream contains the same sequence, the parser treats that as an end of the image data. As a result, the image and the following content cannot be properly parsed and there is missing content when the document is visualized.
Completed
Last Updated: 16 Sep 2020 12:37 by ADMIN
Release R3 2020
The offset of the CropBox is not respected and is always treated as 0.

Workaround: Import the document with PdfProcessing, change the CropBox offsets of the pages to 0, export the modified document and then import it in PdfViewer.
Unplanned
Last Updated: 04 May 2020 06:24 by ADMIN
Telerik.Windows.Zip.InvalidDataException for unknown (0xAD) compression method is thrown for some object streams.
Declined
Last Updated: 27 Jun 2019 10:32 by ADMIN
When the FixedDocumentSinglePagePresenter content control is used to visualize PDF files in custom PDF viewer implementation a raise condition can be occurred leading to NullReferenceException with the following stack trace:
at Telerik.Windows.Documents.Fixed.UI.UIElementsHelper.FillPageContentElementsInPanel(Canvas container, RadFixedPage page)
at Telerik.Windows.Documents.UI.FixedDocumentSinglePagePresenter.CreateContent(RadFixedPage page)
at Telerik.Windows.Documents.UI.FixedDocumentSinglePagePresenter.PageLoader_WorkCompleted(Object sender, WorkCompletedEventArgs e)
at Telerik.Windows.Documents.Utilities.ResourceLoader.OnWorkCompleted(WorkCompletedEventArgs args)
at Telerik.Windows.Documents.Utilities.ResourceLoader.Worker_RunWorkerCompleted(Object sender, RunWorkerCompletedEventArgs e)
at System.ComponentModel.BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e)
at System.ComponentModel.BackgroundWorker.AsyncOperationCompleted(Object arg)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)

The exception is thrown since the current page is unloaded while the content is being parsed.
Declined
Last Updated: 02 May 2019 10:12 by ADMIN
Created by: Alexander Jiménez
Comments: 1
Category: PDFViewer
Type: Feature Request
1

I want to draw the signature box, like in Adobe Acrobat Reader.

This is very important when the document needs more than 1 signature.

Unplanned
Last Updated: 25 Apr 2019 09:38 by ADMIN
Created by: Svyatoslav
Comments: 0
Category: PDFViewer
Type: Feature Request
14
Add PrintPreview dialog visualizing the way the document is going to be printed.
Unplanned
Last Updated: 12 Apr 2019 13:50 by ADMIN
Created by: mike
Comments: 0
Category: PDFViewer
Type: Feature Request
5
Add support for interactive forms based on the Adobe XML Forms Architecture (XFA). XFA specifies an XFA resource, which is an XML stream that contains the information of the form. The format of an XFA resource is described in the XML Data Package (XDP) Specification. The XFA resource provides most of the information about the form; in particular, all form-related events such as calculations and validations.
Unplanned
Last Updated: 11 Apr 2019 10:32 by ADMIN
We should implement the logic for getting character codes from Unicode when using CFFFontSource.
Workaround: The font may be changed by creating a similar font with FontsRepository.TryCreateFont(...) method.
Completed
Last Updated: 02 Feb 2023 09:39 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
In the PDF document model, the Annotation appearances refer to an external resource using the Resources dictionary. When the Resources dictionary is defined as an Indirect Object an InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfDictionary' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.DocumentStructure.PdfResource'.', is thrown.
Completed
Last Updated: 13 Apr 2020 10:02 by ADMIN
Release R2 2020
Created by: mike
Comments: 0
Category: PDFViewer
Type: Feature Request
1
The widgets of the interactive forms are not respected when creating a thumbnail from a PDF page. Implement logic for adding the form fields widgets to the generated image as well.