Completed
Last Updated: 21 Aug 2014 14:03 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Bug Report
0
System.InvalidOperationException: This method is not supported.
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.DocumentModel.Core.ColorSpaces.ColorSpace.GetPixels(XImage image, Byte[] data)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.DocumentModel.Core.XObjects.XImage.GetRegularPixels(XImage image, Byte[] data)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.DocumentModel.Core.XObjects.XImage.CreateImageSource(Byte[] data)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfReader.PdfResourceManager.GetGlobalImageSource(ResourceKey key)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfReader.PdfResourceManager.GetImageSource(ResourceKey key)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider.GetImageSource(ResourceKey key)
   at Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider.GetImageSource(Image image)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawImage(Image image, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContentElement(IContentElement contentElement, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContainer(Container container, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContentElement(IContentElement contentElement, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContainer(Container container, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContentElement(IContentElement contentElement, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContainer(Container container, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawContentElement(IContentElement contentElement, Graphics graphics)
   at Telerik.WinControls.PdfViewer.FixedPageRenderer.DrawPage(ContentCollection content, Graphics graphics, Matrix pageTransform)
   at Telerik.WinControls.UI.RadFixedPageElement.pageRenderer_DoWork(Object sender, DoWorkEventArgs e)
   at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
   at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
Completed
Last Updated: 27 Feb 2015 16:50 by ADMIN
To reproduce:
When document that contain a specific formatting is imported there is some missing text.
Completed
Last Updated: 20 Oct 2014 11:50 by ADMIN
radPdfViewer1.PdfViewerElement.Find("keyword", PageNumber);

Resolution: 
You can use the following code snippet: 
radPdfViewer1.PdfViewerElement.Find(string text, int pageNumber)
Completed
Last Updated: 13 Mar 2014 09:15 by ADMIN
Add the ability to recognize if the document is in portrait or landscape mode when printing.
Completed
Last Updated: 24 Oct 2014 15:54 by ADMIN
To reproduce:
- Open the attached file with RadPdfViewer.
Completed
Last Updated: 24 Oct 2014 15:51 by ADMIN
To reproduce:
-add RadPDFViewer and load a document that has an image for the background and some text over it. As a result RadPDFViewer does not render correctly the file.
Completed
Last Updated: 17 Oct 2014 10:10 by ADMIN
There is no workaround for this issue.
Completed
Last Updated: 02 Sep 2013 07:09 by ADMIN
FIX. RadPdfView - dragging RadPdfViewer to a form does not include the TelerikCommon assembly
Completed
Last Updated: 19 Jun 2014 11:11 by ADMIN
To reproduce: When load the document, the text from file is not visible
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
PdfViewer throws a "Position is out of range" exception when scroll.
Completed
Last Updated: 22 Aug 2014 10:42 by Leonardo
PdfViewer - throws System.OutOfMemoryException in PdfElementsRenderer.RenderImage when the scroll is moving fast.
Completed
Last Updated: 24 Jul 2014 08:22 by ADMIN
ADMIN
Created by: Paul
Comments: 0
Category: PdfViewer
Type: Bug Report
1
When you open a PDF file with the Rad PDF reader the header of the file is not being dispalyed. Only the body gets displayed.
Completed
Last Updated: 13 Mar 2019 17:15 by ADMIN
Release 2018.3.1016
ADMIN
Created by: Stefan
Comments: 1
Category: PdfViewer
Type: Feature Request
16
Add bookmarks functionality
Completed
Last Updated: 24 Jul 2014 08:27 by ADMIN
This issue can be observed when the text is too big to fit in cell.
Completed
Last Updated: 21 Apr 2015 14:31 by ADMIN
ADD. RadPdfViewer - add ability to show the document pages as thumbnails
Completed
Last Updated: 12 Oct 2017 06:36 by ADMIN
ADMIN
Created by: Nikolay
Comments: 7
Category: PdfViewer
Type: Feature Request
20
It will be a great addition of RadPdfViewer if it supports forms/controls.
Completed
Last Updated: 28 May 2015 13:30 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Bug Report
3
To reproduce:
- Load a pdf file at the constructor and try to load another pdf file on Form.Load => the result is that the second pdf is not loaded.
 public Form1()
        {
            InitializeComponent();
            radPdfViewer1.LoadDocument("..\\..\\pdfSample.pdf");

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            radPdfViewer1.LoadDocument("..\\..\\test.pdf");
        }

Workaround: unload the first loaded document prior loading the second one
Completed
Last Updated: 20 Oct 2014 13:56 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: PdfViewer
Type: Bug Report
1
Line Style is not taken into consideration.
Completed
Last Updated: 23 Nov 2016 12:39 by ADMIN
Add an option to save and/or email document. It is especially useful if a file stream is loaded into the viewer.

Currently, the following approach can be used: 
private Stream GetPdfStream()
{

Type documentType = this.radPdfViewer1.PdfViewerElement.Document.GetType();

FieldInfo internalDocumentField = documentType.GetField("internalDocument", BindingFlags.NonPublic | BindingFlags.Instance);

object internalDocumentValue = internalDocumentField.GetValue(this.radPdfViewer1.PdfViewerElement.Document);

FieldInfo formatProviderField = internalDocumentValue.GetType().GetField("formatProvider", BindingFlags.NonPublic | BindingFlags.Instance);

PdfFormatProvider formatProvder = formatProviderField.GetValue(internalDocumentValue) as PdfFormatProvider;

FieldInfo field = formatProvder.GetType().GetField("stream", BindingFlags.NonPublic | BindingFlags.GetField | BindingFlags.Instance);

Stream stream = field.GetValue(formatProvder) as Stream;
return stream;
}
Completed
Last Updated: 11 Jan 2021 09:36 by ADMIN
Release R1 2021
ADMIN
Created by: Peter
Comments: 4
Category: PdfViewer
Type: Feature Request
23
A dictionary specifying any resources (such as fonts and images) required by the form XObject (see Section 3.7 from http://partners.adobe.com/public/developer/en/pdf/PDFReference.pdf