Unplanned
Last Updated: 26 Aug 2021 08:26 by ADMIN
The selection position is wrong when each character is drawn with PDF operators 
Completed
Last Updated: 25 Aug 2021 14:36 by ADMIN
Release R3 2021
List indent is respected instead of locally set paragraph indent when exporting to PDF
Unplanned
Last Updated: 17 Aug 2021 13:03 by ADMIN
Created by: Alexander
Comments: 0
Category: PDFViewer
Type: Bug Report
0
Invalid character rendering with specific glyphs. For example, the two dots of the umlaut characters are not centered. 
Completed
Last Updated: 12 Aug 2021 07:32 by ADMIN
Release LIB 2021.2.608 (08 Jun 2021)
Importing of documents containing many Path geometries leads to OutOfMemoryException due to many created InherentProperty and delegate instances.
Unplanned
Last Updated: 30 Jul 2021 13:04 by ADMIN
While scrolling a document containing many Link annotations there is a decrease in the performance.
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" (č).

Unplanned
Last Updated: 16 Jun 2021 05:05 by ADMIN
The document seems empty when loaded in the viewer.
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.


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.