Completed
Last Updated: 09 Jul 2021 06:37 by ADMIN
Release LIB 2021.2.712 (12 Jul 2021)

Handle import of documents containing Simple fonts with names of entries in the Encoding`s Differences that are not part of the Adobe Glyph List.

According to the PDF Specification (9.10.2 Mapping Character Codes to Unicode Values) if the name is not part of the list: If these methods fail to produce a Unicode value, there is no way to determine what the character code represents.

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: 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: 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: 26 Aug 2021 08:26 by ADMIN
The selection position is wrong when each character is drawn with PDF operators 
Completed
Last Updated: 20 Sep 2021 08:59 by ADMIN
Release LIB 2021.3.920 (20 Sep 2021)
Completed
Last Updated: 21 Oct 2021 13:54 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
PDFViewer: InvalidOperationException (The calling thread cannot access this object because a different thread owns it) when scrolling a specific document.
Unplanned
Last Updated: 26 Oct 2021 08:03 by ADMIN
When the color of the image is using the CMYK color model, DctDecode filter is applied, and there is no ColorTransform set the colors of the image are inverted.
Unplanned
Last Updated: 19 Nov 2021 09:00 by ADMIN

It is actually checked and only the appearance is wrong. When the file is saved the checkboxes states are as expected.

This behavior is observed with PdfImportSettings.ReadOnDemand setting only.

Unplanned
Last Updated: 04 Jan 2022 09:37 by ADMIN
When the Textbox` text alignment is set to top (multiline) left when entering in edit mode the alignment is changing to center-left (check the attached record.gif).
Unplanned
Last Updated: 22 Feb 2022 11:44 by Vojtech
PDFViewer crashes, when used on a tablet, Text selection is activated and text is selected in Touch mode.
Completed
Last Updated: 08 Apr 2022 07:29 by ADMIN
Release LIB 2022.1.411 (11 Apr 2022)
Created by: Bjarke
Comments: 0
Category: PDFViewer
Type: Bug Report
0
The leak is reproducible when printing documents without UI and results in multiple instances of DocumentPrintPresenter kept alive in the memory.
Unplanned
Last Updated: 23 Mar 2022 07:23 by Joseph
The image quality is poor when rendering large images.
Unplanned
Last Updated: 08 Apr 2022 13:24 by Joe
When rendering PDF file with a TrueType font and Unicode platform Id (platformId: 0), glyphs are not obtained from CMAP table and are displayed with default rectangle placeholders.
Unplanned
Last Updated: 19 Apr 2022 12:45 by Dimitar
Implement editor functionalities like add, edit or delete content.
Unplanned
Last Updated: 06 Jun 2022 07:27 by Rahul
An invalid certificate is not imported correctly and causes exception on export. We should be able to handle this and skip the import without breaking the file. 
Unplanned
Last Updated: 05 Sep 2022 10:16 by Mauro
VS 2022 designer exception when PdfViewer is dragged and dropped from the toolbox.
Unplanned
Last Updated: 29 Sep 2022 10:57 by Brian
Created by: Brian
Comments: 0
Category: PDFViewer
Type: Bug Report
0
Some images with SMask applied are not rendered in the viewer.

Completed
Last Updated: 05 Jul 2023 10:51 by ADMIN
Release R2 2023 SP1
Path geometries with a small thickness value are not displayed correctly 
Unplanned
Last Updated: 10 Jan 2023 09:02 by Martin

When making changes to Form fields then flattening them and invoking the viewer`s Save method an exception is thrown: System.Collections.Generic.KeyNotFoundException: 'The given key was not present in the dictionary.'

Code to reproduce the issue:

this.pdfViewer.Document.AcroForm.FlattenFormFields();

using (Stream output = File.OpenWrite("Exported.pdf"))
{
	this.pdfViewer.Save(output);
}
Workaround: Export the document using the PdfFormatProvider:
this.pdfViewer.Document.AcroForm.FlattenFormFields();

using (Stream output = File.OpenWrite("Exported.pdf"))
{
	PdfFormatProvider provider = new PdfFormatProvider();
	provider.Export(this.pdfViewer.Document, output);
}