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

			
Declined
Last Updated: 09 Apr 2015 12:59 by ADMIN
Created by: Mauro Pederzolli
Comments: 1
Category: PdfViewer
Type: Feature Request
3
Add rotate view button.
Completed
Last Updated: 27 Mar 2018 11:49 by Dimitar
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: 24 Jul 2014 08:27 by ADMIN
This issue can be observed when the text is too big to fit in cell.
Unplanned
Last Updated: 24 Aug 2018 12:41 by Brian
Created by: Brian
Comments: 2
Category: PdfViewer
Type: Feature Request
3
Include support for layers
Unplanned
Last Updated: 22 Nov 2019 13:15 by ADMIN
When saving Form Fields in document defined with linearized PDF structure, it produces a document that fails to open in Edge.
Completed
Last Updated: 26 Oct 2015 15:35 by ADMIN
Open large file in RadPDFViewer. Navigate from page 70 to page 250 or enter number by hand and you will notice that the page is opened slowly.
Unplanned
Last Updated: 07 Jun 2016 09:59 by ADMIN
Watermark does not look correctly and the page margins are not valid for the very small paper sizes.
Unplanned
Last Updated: 04 May 2016 08:32 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Bug Report
2

			
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.
Unplanned
Last Updated: 29 Jul 2019 10:26 by ADMIN

The current implementation relies on valid cross-reference table offsets in the PDF documents so that PDF objects are easily found and parsed. However, a mechanism for importing documents with invalid cross-reference table offsets may be implemented.

The attached project shows how to repair such documents.

Unplanned
Last Updated: 16 May 2019 05:09 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Bug Report
2
Please refer to the attached sample screenshot demonstrating how the document look in Adobe and in RadPdfViewer.
Completed
Last Updated: 03 Jun 2015 13:07 by ADMIN
To reproduce:
- Just show and close a form that contains pdf viewer with a loaded document several times. 
Unplanned
Last Updated: 05 Nov 2018 16:47 by ADMIN
structure
The hierarchical document structure is a means to describe the PDF document structure, which is currently not supported. See 10.6.1 Structure Hierarchy on 856 page of the PDF specification for details.
This document structure is an alternative to the standard PDF structure and most non-Adobe software does not support it.

The document might have been created with Adobe software like Adobe LiveCycle Designer. Very often the document contains some fallback text in the standard PDF structure like:
"Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document."
"The document you are trying to load requires Adobe Reader 8 or higher. You may not have the Adobe Reader installed or your viewing environment may not be properly configured to use Adobe Reader. For information on how to install Adobe Reader and configure your viewing environment please see  http://www.adobe.com/go/pdf_forms_configure."
"For the best experience, open this PDF portfolio in Acrobat X, Reader X, or later."
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
Completed
Last Updated: 20 Nov 2023 07:41 by ADMIN
Release R3 2023 SP1 (2023.3.1114)
Unplanned
Last Updated: 23 May 2018 15:04 by ADMIN
This is reproducible for images with FlateDecode and predictor value in the range between 10 and 15. As an example you may take a look at the DecodeParms property in the following image PDF dictionary:

<< /BitsPerComponent 8 /ColorSpace /DeviceRGB /DecodeParms << /BitsPerComponent 8 /Colors 3 /Columns 1024 /Predictor 15 >> /Filter /FlateDecode /Height 2868 /Subtype /Image /Type /XObject /Width 1024 /Length 1236707 >>
Completed
Last Updated: 06 Sep 2016 07:30 by ADMIN
Workaround: until the feature be implemented one can print each page individually respecting its orientation whether it is portrait or landscape
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
 
        this.radPdfViewer1.LoadDocument(@"..\..\sample.pdf");
    }
 
    private void radButton1_Click(object sender, EventArgs e)
    {
        RadPrintDocument doc = new RadPrintDocument();
        doc.AssociatedObject = this.radPdfViewer1;
 
        for (int i = 0; i < this.radPdfViewer1.Document.Pages.Count; i++)
        {
            RadFixedPage page = this.radPdfViewer1.Document.Pages[i];
 
            doc.CurrentPage = i;
            doc.PrinterSettings.PrintRange = PrintRange.CurrentPage;
            doc.Landscape = page.ActualWidth > page.ActualHeight;
 
            doc.Print();
        }
    }
}
Completed
Last Updated: 25 Feb 2016 11:16 by ADMIN