Completed
Last Updated: 11 Jun 2021 11:00 by ADMIN
Release R2 2021 SP1
This is caused by integrating the PdfProcessing model in PdfViewer.
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");

Completed
Last Updated: 30 Mar 2021 11:25 by ADMIN
Release R2 2021 (LIB 2021.1.329)
Pdf file with an image that uses indexed color space is not rendered correctly
Completed
Last Updated: 07 May 2021 11:46 by ADMIN
Release R2 2021
One should be able to change the default SignSignatureDialog. Its buttons event handlers should be made virtual as so one can override the default behavior as well.
Completed
Last Updated: 11 Aug 2023 04:05 by ADMIN

Is there a way to load this RadFixedDocument into a RadPdfViewer without writing the document to a file first and then loading it in the viewer?

Workaround:

You can achieve the desired functionality by exporting the RadFixedDocument to a MemoryStream instead of a file in the file system and then load it in the PdfViewer: 

RadFixedDocument document = CreateRadFixedDocument();

PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
Stream ms = new MemoryStream();
pdfFormatProvider.Export(document, ms);

radPdfViewer1.LoadDocument(ms);

 

Completed
Last Updated: 17 Feb 2021 09:47 by ADMIN
Release R1 2021 SP2
Created by: TafnitDev
Comments: 1
Category: PdfViewer
Type: Bug Report
0

Hello,

When opening this document (see attached), PDF viewer crashes with following exception.

To reproduce, open this document in the Pdf Viewer WinForms example, latest version.

Screenshot attached.


************** Exception Text **************
System.InvalidCastException: Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfHexString' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfLiteralString'.
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.ExceptionHandling.ExceptionHandler.TryHandle(Exception exception)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.PageContentManager.LoadPageContent(RadFixedPage fixedPage)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.ThreadSafePageContentManager.LoadPageContent(RadFixedPage page)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.LoadOnDemandPagesCacheManager.LoadPage(RadFixedPage page)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Import.LoadOnDemandPagesCacheManager.BeginUsingPage(RadFixedPage page)
   at Telerik.Windows.Documents.Fixed.Text.TextPageProvider.CreateTextPage(RadFixedPage fixedPage, TextDocument parent)
   at Telerik.Windows.Documents.Fixed.Text.TextDocument.CreateTextPage(Int32 index)
   at Telerik.Windows.Documents.Fixed.Text.TextDocument.GetTextPage(Int32 index)
   at Telerik.WinControls.PdfViewer.MouseHandlers.SelectionHandler.Initialize(RadFixedDocument document)
   at Telerik.WinControls.PdfViewer.MouseHandlers.MouseHandlersController.InitializeHandlers(RadFixedDocument document)
   at Telerik.WinControls.UI.RadPdfViewerElement.documentLoader_RunWorkerCompleted(Object sender, RunWorkerCompletedEventArgs e)
   at System.ComponentModel.BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e)
   at System.ComponentModel.BackgroundWorker.AsyncOperationCompleted(Object arg)

Completed
Last Updated: 13 Dec 2021 15:23 by ADMIN
Release R3 2021
The default radio button state is not displayed correctly with specific documents
Completed
Last Updated: 15 Apr 2021 15:15 by ADMIN
Release R2 2021
Completed
Last Updated: 15 Apr 2021 15:22 by ADMIN
Release R2 2021
Created by: Vincenzo
Comments: 3
Category: PdfViewer
Type: Bug Report
0

Good morning.

 

I'm using a pdfViewer instance in order to load pdf forms, with text fields to be edited by the users.

Loading is ok, editing is ok, the problem is when I go to save the edited document. When I save the document, if I don't click elsewhere in the document, in which case the content of the field is committed, the content of the field is not saved with the document. This happens either using the 'Save As' button or using the SaveDocument API function.

Probably it is my fault, since I'm new to PdfViewer: I can imagine that something like a commit command has to be available, but I'm not able to find it.

 

Can you help me, please?
Thank you in advance.

 

PS. I will attach three screenshots in order to let you understand better what I mean.

Completed
Last Updated: 11 Jan 2021 13:19 by ADMIN
Release R1 2021
Created by: Daniel
Comments: 1
Category: PdfViewer
Type: Feature Request
0
Is there a way to customize the box to request a signature?

 

 

Thanks in advance
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. 
Completed
Last Updated: 17 Feb 2020 09:21 by ADMIN
Release R1 2020 SP1

I am using RadPDFViewer, i built a specific toolbar for manage the funcionalities of the viewer.

I didn´t found the any event when the current page is changed in viewer. I would like to show a label "Page NN of TT".

 I found this "https://www.telerik.com/forums/page-changed-detected", but didn´t have this event in RadPDFViewer.

 

Whats the better solution for the raise event when the current page displayed is changed? 

 

Can you help me ?!? 

Completed
Last Updated: 13 Dec 2021 11:45 by ADMIN
Release R3 2020
The CID font may define a description of the glyph widths. By specification, the widths can be defined in two ways - with start and end CID codes or with and an array of CID codes. However, the current implementation supports only CID arrays as direct property and not as an indirect object. This leads to incorrectly imported glyph widths and text positioning issues.
Completed
Last Updated: 13 Oct 2020 09:16 by ADMIN
Release R3 2020
The CID font may define a description of the glyph widths. By specification, the widths can be defined in two ways - with start and end CID codes or with and an array of CID codes. However, the current implementation supports only CID arrays as direct property and not as an indirect object. This leads to incorrectly imported glyph widths and text positioning issues.
Completed
Last Updated: 13 Dec 2021 11:37 by ADMIN
Release R3 2020
The offset of the CropBox is not respected and is always treated as 0.

Workaround: Import the document with PdfProcessing, change the CropBox offsets of the pages to 0, export the modified document and then import it in PdfViewer.
Completed
Last Updated: 13 Dec 2021 10:56 by ADMIN
Release R3 2020
The EI keyword defines an operator for ending the image data. When the stream contains the same sequence, the parser treats that as an end of the image data. As a result, the image and the following content cannot be properly parsed and there is missing content when the document is visualized.
Completed
Last Updated: 21 Mar 2019 14:48 by Dimitar
Release 2019.1.325 (03/25/2019)

To reproduce:

Open a large document and start scrolling fast. 

The pages a blank when scrolling and are rendered after scrolling stops.

Completed
Last Updated: 21 Aug 2020 08:17 by ADMIN
Release R3 2020 (LIB 2020.2.825)
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
3

			
Completed
Last Updated: 13 Dec 2021 10:50 by ADMIN
Release R3 2020
Some files when opened with PdfViewer will throw a KeyNotFoundException which will be handled. Parts of the text in the file might or might not be missing.
Completed
Last Updated: 19 Feb 2021 10:21 by ADMIN
Release R3 2020
ADMIN
Created by: Hristo
Comments: 0
Category: PdfViewer
Type: Feature Request
2
This is Unicode (UTF-16BE) encoding for the Adobe-GB1 character collection; contains mappings for all characters in the GB18030-2000 character set.

Described on page 443 in Pdf Reference 1.7.