Completed
Last Updated: 28 Jul 2022 07:58 by ADMIN
Release R3 (LIB 2022.2.711)

With the R1 2021 version of our controls RadPdfViewer is using the RadPdfProcessing library model. In this scenario, the PDF document contains images with sizes 87380, 87654. Internally the control is using RenderTargetBitmap to draw the image. So when we pass these values as Width and Height to the constructor of this object an exception occurs. This is a limitation of the RenderTargetBitmap class. It can be reproduced outside of the RadPdfViewer.

RenderTargetBitmap bmp = new RenderTargetBitmap(87380, 87654,96,96,PixelFormats.Pbgra32);

As a workaround, we can use the old rendering engine of the control by setting the RadPdfViewer.UsePdfProcessingModel property to false

Completed
Last Updated: 17 Jun 2022 07:38 by ADMIN
Release R2 2022 SP1
Declined
Last Updated: 02 Feb 2023 11:19 by ADMIN

When exporting a RadFixedDocument, which contains a signature added with PdfProcessing a NotSupportedException is thrown: 'Stream does not support reading.'

Resolution: When exporting a digitally signed document a stream that allows both reading and writing should be passed to the PdfFormatProvider.

Example:

Stream outputStream = new FileStream("path", FileMode.OpenOrCreate, FileAccess.ReadWrite)

Unplanned
Last Updated: 21 Mar 2022 14:07 by FEAP
When exporting a RadFixedDocument, which contains a signature added with PdfProcessing a NotSupportedException is thrown: 'Stream does not support reading.'
Completed
Last Updated: 28 Mar 2022 16:22 by ADMIN
Release R2 2022 (LIB 2022.1.329)

The highlight annotation appears above the text and covers it, instead of appearing under it.

Expected:

Actual:

Completed
Last Updated: 16 Feb 2022 09:31 by ADMIN
Release R1 2022 SP1
Exception when saving a document that is being used by another process
Declined
Last Updated: 16 Feb 2024 22:19 by ADMIN
Created by: Haithem
Comments: 2
Category: PdfViewer
Type: Bug Report
0

Hello 

 

I am have a problem with pdf wiewer when the PDF file contains an images , it is slow in movement and it is difficult to navigate between pages. Is it possible to fix this problem 

 

 

Completed
Last Updated: 26 Jan 2022 10:01 by ADMIN
Release R1 2022 SP1
Unplanned
Last Updated: 17 Apr 2024 14:32 by ADMIN
The editor size should be limited to the size of the widget. Currently on is able to enter more than one line in a textbox and when the content is not visible and it is cut off when flattening. 
Completed
Last Updated: 29 Nov 2021 16:38 by ADMIN
Release R1 2022
Please refer to the attached gif file and notice the loading delay when scrolling to a specific page. It would be nice to optimize this experience.
Completed
Last Updated: 29 Nov 2021 16:39 by ADMIN
Release R1 2022
It is actually checked and only the appearance is wrong. When the file is saved the checkboxes states are as expected.
Unplanned
Last Updated: 29 Oct 2021 11:02 by ADMIN
The issue is reproducible only for some specific font files. The characters are displayed as rectangles. This seems to caused by incorrect glyph name and glyph id mapping.
Completed
Last Updated: 01 Nov 2021 16:08 by ADMIN
Release R3 2021 SP1
Memory leaks when opening a large file several times. 
Completed
Last Updated: 19 Oct 2021 04:26 by ADMIN
Release R3 2021 SP1 (LIB 2021.3.1019)
Incorrectly displayed type 3 fonts with a specific file
Unplanned
Last Updated: 26 Jul 2021 06:27 by ADMIN
Loading corrupt PDF results in non-trappable error and exception
Unplanned
Last Updated: 28 Jun 2021 13:06 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.

Completed
Last Updated: 15 Jun 2021 10:31 by ADMIN
Release R2 2021 SP1
Created by: Eddie
Comments: 1
Category: PdfViewer
Type: Bug Report
0

Hi,

The RadPdfViewer ExportPages is broken in the new release. It works in the previous version.

 


        Dim bmpArray As List(Of Bitmap) = pdfview.ExportPages(1.0, True, Imaging.ImageFormat.Png) = null

 

Completed
Last Updated: 11 Jun 2021 11:00 by ADMIN
Release R2 2021 SP1
This is caused by integrating the PdfProcessing model in PdfViewer.
Unplanned
Last Updated: 30 Apr 2021 08:53 by ADMIN

The viewer is using a large amount of memory when scrolling a specific PDF file. After some point, an OutOfMemeory exception is thrown.

Workaround:

Build for the x64 platform

Completed
Last Updated: 18 May 2021 08:20 by ADMIN

PdfViewer: Password protected documents cannot be opened 

Workaround:

PdfFormatProvider provider = new PdfFormatProvider();
PdfImportSettings settings = this.radPdfViewer1.PdfViewerElement.ImportSettings;
settings.UserPasswordNeeded += (s, a) =>
{
    a.Password = "1234";
};

provider.ImportSettings = settings;

this.radPdfViewer1.LoadDocument(@"..\..\password.pdf");