Unplanned
Last Updated: 30 Nov 2023 18:51 by Martin Ivanov
Currently, there are 10px of margin on each side of the FixedDocumentPresenter element showing the page. This is controlled by the PageMargins property of the PagesLayoutManagerBase class, which is set to a fixed value of 10. To change this, you will need to implement custom PagesLayoutManager and few other page presenter classes from scratch. 

Add a property that allows easily changing of the PageMargins value.

At this moment, you can work this around by setting the PageMargins via reflection.
var pageMarginsPropInfo = typeof(PagesLayoutManagerBase).GetField("pageMargins", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);
pageMarginsPropInfo.SetValue(null, new Size(0, 0));

Unplanned
Last Updated: 20 Apr 2023 06:45 by Veli
KeyNotFoundException because of missing State Appearances.
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: 31 Oct 2018 08:07 by ADMIN
GoToPage() method is not working correctly in some cases when called in DocumentChanged event handler. The known cases are described below:

   1. When RadPdfViewer and the document are loaded initially and document is set through the RadPdfViewer.Document property.
Workaround: DocumentSource property could be set (in XAML or in code-behind) instead of the Document property. If the Document property is used, this should be done after RadPdfViewer is loaded.

    2. When the ScaleMode is changed in DocumentChanged event handler and then GoToPage() method is called in the same event handler.
Unplanned
Last Updated: 13 Dec 2023 08:00 by Roman
 Exception when rendering a file with a lot of RenderTargetBitmap objects (Com Exception: MILERR_WIN32ERROR). It seems that we are creating this for tilling patters which are not reused and we ca reconsider our appraoch.  
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: 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: 19 Apr 2022 12:45 by Dimitar
Implement editor functionalities like add, edit or delete content.
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: 31 Oct 2018 08:07 by ADMIN
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: 31 Oct 2018 08:11 by ADMIN
ADMIN
Created by: Kammen
Comments: 0
Category: PDFViewer
Type: Bug Report
0
The ActionsManager.ExecuteUri method throws exception when tries to open relative Uri. As the exception is caught, with the current state no action is observed when interacting with such link in RadPdfViewer.
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: 26 Aug 2021 08:26 by ADMIN
The selection position is wrong when each character is drawn with PDF operators 
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.