Unplanned
Last Updated: 14 Oct 2024 14:50 by Tony

Open the Demo app and load the PDF document with such annotation. The following error occurs:

************** Exception Text **************
System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
   at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
   at Telerik.Windows.Documents.Fixed.Utilities.Rendering.Annotations.DefaultAppearanceProvider.TryGetCurrentAnnotationAppearances(Annotation annotation, SingleStateAppearances& singleStateAppearances)
   at Telerik.Windows.Documents.Fixed.Utilities.Rendering.Annotations.DefaultAppearanceProvider.TryProvideAppearanceOverride(Annotation annotation, AnnotationAppearanceMode annotationAppearanceMode, FormSource& formSource)
   at Telerik.Windows.Documents.Fixed.Utilities.Rendering.Annotations.BaseAppearanceProvider.TryProvideAppearance(Annotation annotation, AnnotationAppearanceMode annotationAppearanceMode, FormSource& appearance)
   at Telerik.Windows.Documents.Fixed.Utilities.Rendering.Annotations.BaseAppearanceProvider.TryProvideAppearance(Annotation annotation, AnnotationAppearanceMode annotationAppearanceMode, FormSource& appearance)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawPage(RadFixedPage page, Graphics graphics)
   at Telerik.WinControls.UI.FixedPagePreRenderer.rendererWorker_DoWork(Object sender, DoWorkEventArgs e)
   at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
   at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
Completed
Last Updated: 25 Sep 2024 10:22 by ADMIN
Release 2024.3.924
A specific scanned file is not displayed with the new model.
Duplicated
Last Updated: 10 Sep 2024 12:40 by ADMIN
Created by: Monique
Comments: 2
Category: PdfViewer
Type: Feature Request
0
Until the PDFViewer can support layers, it would be great if a property could be exposed that would allow the developer to detect if the PDF has layers so they can alert the viewer to the possibility that the layers may not be visible.
Unplanned
Last Updated: 04 Sep 2024 13:50 by ADMIN
Created by: Monique
Comments: 1
Category: PdfViewer
Type: Feature Request
1

The problem I'm trying to solve is that users do not know that the original document may not be what they are seeing in the viewer when there are layers.    

A property that indicates that a document has layers would allow the system to refuse to open the document.

Unplanned
Last Updated: 03 Sep 2024 08:32 by ADMIN
Created by: Nadya
Comments: 0
Category: PdfViewer
Type: Feature Request
1
Enable the customers to work with annotations of type Stamp.
Unplanned
Last Updated: 03 Sep 2024 08:27 by ADMIN
Created by: Nadya
Comments: 0
Category: PdfViewer
Type: Feature Request
1
A pop-up annotation displays text in a pop-up window for entry and editing. It typically does not appear alone but is associated with a markup annotation (its parent annotation) and is used for editing the parent’s text.
Duplicated
Last Updated: 02 Sep 2024 14:48 by ADMIN
Created by: Prafull
Comments: 0
Category: PdfViewer
Type: Feature Request
0
 Add support for highlight annotations
Duplicated
Last Updated: 02 Sep 2024 14:34 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Feature Request
4
RadPdfViewer can not display annotated PDF file
 Kindly,i used VintaSoft SDk to Annotate PDF File, File is annotated successfully and i can open it with Adobe Reader and see annotations is added to it
 but while i try to view annotated PDF file using RadPDFViewer File will displayed without annotations ,only original content displayed.
Kindly find my attached AnnotatedPDFfile To be loaded in RadPDfViewer
Unplanned
Last Updated: 16 Aug 2024 08:46 by ADMIN
A specific scanned file is not displayed in the viewer. This lead to empry pages.
Duplicated
Last Updated: 08 Aug 2024 10:37 by ADMIN
Created by: Mihajlo
Comments: 1
Category: PdfViewer
Type: Bug Report
0

The attached file lorem-ipsum.pdf is rendered incorrectly in PdfViewer. I suspect it has something to do with kerning, because monospace font is not affected. Adobe Acrobat, Foxit PDF Reader, and Chrome render the file correctly.

The file was created with Pandoc, open source software, converting a markdown file (.md) to .pdf.

Unplanned
Last Updated: 08 Aug 2024 10:20 by ADMIN
ADMIN
Created by: Dimitar
Comments: 3
Category: PdfViewer
Type: Feature Request
12

			
Unplanned
Last Updated: 25 Jun 2024 14:21 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 '.', ':', '(', '...'

Also, the CaretPosition is not correct.

Completed
Last Updated: 15 May 2024 07:49 by ADMIN
Release 2024.2.514 (2024 Q2)
When the font is not embedded in the document, PdfViewer tries to read it from the OS. However, the Calibri-Font is not properly parsed and a NullReferenceException is thrown internally for its encoding. 
Unplanned
Last Updated: 07 May 2024 12:18 by ADMIN
Created by: Philip
Comments: 2
Category: PdfViewer
Type: Bug Report
2
Signature fields are not rendered in the PDF while loading it in the RadPdfViewer control.
Unplanned
Last Updated: 02 May 2024 12:01 by ADMIN
On HDPI (200%) Print Preview Dialog bottom buttons are cut off.
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: 17 Apr 2024 10:05 by ADMIN
Provide a new property that specifies FileName in SaveAs command.
Declined
Last Updated: 17 Apr 2024 08:22 by ADMIN
The issue is reproducible only on Windows XP. On newer versions of windows, the images are rendered as expected.

WORKAROUND: You may try implementing custom filter that handles the CMYK scenario. How to implement custom DCTDecode filter is described in this documentation article:
https://docs.telerik.com/devtools/winforms/pdfviewer/customize-and-extensibility/customize-pdf-rendering
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

 

1 2 3 4 5 6