Unplanned
Last Updated: 28 Jun 2021 13:03 by ADMIN

When importing a document containing a single associated widget annotation merged into the field dictionary the field is skipped on import and an exception is thrown.

According to the PDF Specification: Field Dictionaries: Kids:

An array of indirect references to the immediate children of this field.
In a non-terminal field, the Kids array is required to refer to field dictionaries that are immediate descendants of this field. In a terminal field, the Kids array ordinarily must refer to one or more separate widget annotations that are associated with this field. However, if there is only one associated widget annotation, and its contents have been merged into the field dictionary, Kids must be omitted.

Unplanned
Last Updated: 28 Jun 2021 07:14 by ADMIN

There are missing characters when importing documents containing Standard fonts with a Differences array defined in the Encoding, which contains characters that do not fit in the first 255 glyph definitions in the font. Most of these characters are the ones with an accent such as "ccaron" (č).

Completed
Last Updated: 22 Jun 2021 07:45 by ADMIN
Release R2 2021 SP1
RadPdfViewer can not find startxref keyword at the end of a document if the document contains many zero bytes at its end. NotSupportedException is thrown with "Startxref keyword cannot be found" message. 

Workaround: Trim the ending zero bytes before loading the document to the PdfViewer. This is currently noted in the WinForms KB article:
http://www.telerik.com/support/kb/winforms/details/notsupportedexception-startxref-keyword-cannot-be-found-when-loading-pdf-file-in-radpdfviewer-for-winforms
Unplanned
Last Updated: 16 Jun 2021 05:05 by ADMIN
The document seems empty when loaded in the viewer.
Completed
Last Updated: 14 Jun 2021 11:58 by ADMIN
Release R2 2021 SP1

The object definitions are split into several lines:

Completed
Last Updated: 14 Jun 2021 11:56 by ADMIN
Release R2 2021 SP1

From the PDF specification:

Prev(Present only if the file has more than one cross-reference section; must not be an indirect reference) The byte offset from the beginning of the file to the beginning of the previous cross-reference section. 

When importing such a document an exception is thrown: System.ArgumentNullException: 'Value cannot be null.

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.
Unplanned
Last Updated: 02 Jun 2021 14:58 by ADMIN

Inserting PNG ImageSource into a document and applying the document instance directly to the RadPdfViewer`s Document property (without exporting to stream) leads to a wrong image rendering.

Workaround: Export the document with the PdfFormatProvider:

MemoryStream ms = new MemoryStream();
PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
pdfFormatProvider.Export(radFixedDocument, ms);

PdfDocumentSource source = new PdfDocumentSource(ms, pdfViewer.DefaultImportSettings);
this.pdfViewer.DocumentSource = source;

Completed
Last Updated: 27 May 2021 11:54 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
This is not a valid PDF scenario as having appearance state requires having multistate appearances. However, we should handle this invalid document scenario on our side so that the app does not crash with NullReferenceException.
Completed
Last Updated: 27 May 2021 10:11 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
When there is no ToUnicode CMap, the text from the Simple Font instance should be extracted by mapping the glyph name to its corresponding charcode according to Adobe Glyph List. Additionally, the Differences array should be included in these calculations when there is custom encoding. The current implementation of RadPdfViewer makes ToString to the original char id byte value which leads to wrong characters. 
Unplanned
Last Updated: 26 May 2021 10:31 by ADMIN
When executing a Find command in Fit to Width scrolling mode (when more than one page and the result is on the next page) the search result is shown on the bottom of the page instead of the page being centered according to the content found, which results in the number of the current page as well (check the attached image). 
Unplanned
Last Updated: 26 May 2021 06:35 by ADMIN

Creating a PdfViewer instance without adding it in the visual tree, leads to leaked document presenter instances when the TouchManager is enabled.

Workaround: Disable the TouchManager:

Telerik.Windows.Input.Touch.TouchManager.IsEnabled = false;

Unplanned
Last Updated: 03 May 2021 08:35 by ADMIN
The editor text is not visible with some themes. Implement an event that allows you to access the active editor and change its properties. 
Completed
Last Updated: 03 May 2021 07:15 by ADMIN
Release LIB 2021.1.329 (29/3/2021)
Invalid character rendering due to the glyphs caching.
Unplanned
Last Updated: 21 Apr 2021 07:04 by ADMIN

Currently, the PdfProcessing document model is providing support only for a single function in the Function entry.

According to the PDF Specification: Function: A 1-in, n-out function or an array of n 1-in, 1-out functions.


Unplanned
Last Updated: 20 Apr 2021 13:03 by ADMIN
When the document contains an invalid code space range in the embedded CMap table the CMap table is not correctly imported, which leads to wrong character mapping in the text selection.
Completed
Last Updated: 19 Apr 2021 10:56 by ADMIN
Release LIB 2021.1.419 (19/04/2021)
When the Text Rise ("Ts") operator is set the text baseline is moved in the opposite direction according to its default location.
BT 48 819.32 Td -16.6 Ts (Some text to display) Tj ET
Unplanned
Last Updated: 16 Apr 2021 12:04 by ADMIN
Exception if pdf has different orientations and the thumbnails are used
Unplanned
Last Updated: 08 Apr 2021 07:18 by ADMIN
A shape is draw incorrectly when showing a specific file
Completed
Last Updated: 29 Mar 2021 14:23 by ADMIN
Release LIB 2021.1.504 (05/04/2021)
Currently, when we parse inline image dictionaries we rely on the assumption that the colorspace will be PdfName. However, there are files with complex colorspaces that are PdfArray and InvalidCastException is thrown. All the content after this exception is lost and not visualized by RadPdfViewer.