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. 
Unplanned
Last Updated: 09 Apr 2024 05:57 by Tino

Steps to reproduce:

1. Load a PDF document with 0 pages

2. Enter some text in the search textbox and click the next/prev buttons

Expected: the search textbox should be either disabled or should ignore any search operation

Actual: an error occurs

Workaround:

    Private Sub pdf_Viewer_DocumentLoaded(sender As Object, e As EventArgs)
        If pdf_Viewer.Document.Pages.Count = 0 Then
            pdf_Toolbar.SearchTextBox.Enabled = False
            pdf_Toolbar.NextButton.Enabled = False
            pdf_Toolbar.PreviousButton.Enabled = False
        Else
            pdf_Toolbar.SearchTextBox.Enabled = True
            pdf_Toolbar.NextButton.Enabled = True
            pdf_Toolbar.PreviousButton.Enabled = True
        End If
    End Sub

 

Unplanned
Last Updated: 16 Feb 2024 12:30 by ADMIN
Created by: Henk
Comments: 0
Category: PdfViewer
Type: Bug Report
0
PDFViewer: GotoDestination(Destination) is off vertically
Unplanned
Last Updated: 07 Nov 2023 14:51 by ADMIN

Use the attached pdf document and launch the PdfPrintPreviewDialog. As it is demonstrated in the gif file, the preview dialog moves the pages slower than the pdf viewer itself.

Expected behavior: the performance for navigating the pages should be at least identical.

Unplanned
Last Updated: 16 Oct 2023 11:55 by ADMIN

This is the result with R3 2022:

 

 

This is the result with R2 2023 SP1:

 

Unplanned
Last Updated: 13 Sep 2023 14:20 by ADMIN
If the DataError is handled, you can detect what kind of internal errors occur. The document is loaded successfully at the end. If the thumbnails menu is hidden, the load time is much faster.
Unplanned
Last Updated: 28 Aug 2023 11:58 by ADMIN

Load a document with bookmarks and select the bookmarks options. Then, move the splitter:

Expected: the selected option (bookmarks) is unchanged

Actual: the selected option (bookmarks) is not preserved and it is reset

 
Unplanned
Last Updated: 01 Mar 2023 07:17 by David
The GetSelectedText method returns incorrect spacing with some documents. 
Unplanned
Last Updated: 10 Jan 2023 09:41 by ADMIN
To reproduce: 
        public TestRadForm()
        {
            InitializeComponent();
            this.radPdfViewer1.LoadDocument(@"..\..\..\SampleDocument.pdf");
        }

        private void radButton1_Click(object sender, EventArgs e)
        {
            this.radPdfViewer1.Document.AcroForm.FlattenFormFields();
            this.radPdfViewer1.SaveDocument(@"..\..\saved.pdf");
        }
Unplanned
Last Updated: 09 Jan 2023 10:15 by Rakesh
The selection position is wrong when each character is drawn with PDF operators.
Unplanned
Last Updated: 24 Oct 2022 12:31 by enric
Some documents generated with crystal reports are not rendered correctly. 
Unplanned
Last Updated: 26 Aug 2022 05:25 by Ralf
Improve Error Handling for PdfRadViewer during document import (BackgroundWorker)
Unplanned
Last Updated: 08 Aug 2022 07:52 by Jan Brandenburger
KeyNotFoundException when filing the fields in a specific document and saving it.
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.'
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.
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.

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

Unplanned
Last Updated: 27 Apr 2021 13:00 by ADMIN
The executing of the PostScriptReader`s Read method takes a lot of time when iterating content streams with many Path geometries.
Unplanned
Last Updated: 26 Jan 2021 07:43 by ADMIN
A specific scanned file is not displayed with the new model.
1 2 3