Unplanned
Last Updated: 20 Apr 2023 15:18 by Margret
Created by: Margret
Comments: 1
Category: PDFViewer
Type: Bug Report
1
Bad image quality when rendering.
Unplanned
Last Updated: 20 Apr 2023 06:45 by Veli
KeyNotFoundException because of missing State Appearances.
Unplanned
Last Updated: 27 Mar 2023 13:52 by ADMIN

Observed when loading a document: 

Unplanned
Last Updated: 08 Feb 2023 08:25 by Dimitar
PDF form with multiline textbox - after flattening all text is not visible
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);
}

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.

Unplanned
Last Updated: 27 Sep 2022 07:30 by Hartmut
When the page is rotated the Stamp annotation is not rendered correctly:

Unplanned
Last Updated: 26 Sep 2022 13:20 by ADMIN
When RadPdfViewer is in text selection mode and the user is trying to select a word by double-clicking on it, the last letter of the word is not selected when the word is followed by some symbols like '.', ':', '(', '...'
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: 23 Jun 2022 08:13 by ADMIN
Handle the cases when the page is rendered slowly and the document appears empty
Unplanned
Last Updated: 09 Jun 2022 10:57 by Darcy
Created by: Darcy
Comments: 0
Category: PDFViewer
Type: Bug Report
1
The PdfViewer has slow performance when rendering images that have large size but are scaled down.
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: 23 Mar 2022 07:23 by Joseph
The image quality is poor when rendering large images.
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.
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: 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: 10 Nov 2021 09:08 by Oliver
COMException: 'Exception from HRESULT: 0x8052000C' breaks the printing of the a specific document.
Unplanned
Last Updated: 27 Oct 2021 13:34 by ADMIN

While all the pages and components of the control are rendered on the image, the content is completely missing from it. The issue is a regression caused by the migration of the model and its async rendering introduced in R3 2020.

Workaround: Fallback to the old rendering engine:

  • Changing the default behavior:

 this.pdfViewer.DefaultImportSettings.UseOldRendering = true;

  • Setting the property to the format provider used to show the document:

PdfImportSettings settings = PdfImportSettings.ReadOnDemand;
settings.UseOldRendering = true;

 

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: 07 Oct 2021 11:23 by ADMIN

When importing a document with a missing state separator (e.g. linefeed) in the object stream (ObjStm) an exception is thrown: System.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.Types.PdfInt'.'

А possible workaround could be handling the exceptions: Handling Exceptions.