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.
Unplanned
Last Updated: 14 Aug 2017 13:07 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: PdfViewer
Type: Feature Request
2

			
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();
        }
    }
}
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: 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: 24 Aug 2018 12:41 by Brian
Created by: Brian
Comments: 2
Category: PdfViewer
Type: Feature Request
2
Include support for layers
Unplanned
Last Updated: 31 Mar 2021 11:20 by ADMIN
Created by: Henk
Comments: 0
Category: PdfViewer
Type: Feature Request
2
The PDF model allows actions to be defined for widgets using the optional /A entry. 
Unplanned
Last Updated: 08 Apr 2021 08:06 by ADMIN
Created by: Joseph
Comments: 0
Category: PdfViewer
Type: Feature Request
2
Introduce support for per page rotation. The result should be automatically saved as well. 
Unplanned
Last Updated: 30 Jul 2019 08:56 by ADMIN
When a pdf/a compliant document is opened in Adobe, there is a bar saying that the document is compliant with the standard. Expose such functionality in PdfViewer as well.
Unplanned
Last Updated: 05 Nov 2019 15:31 by MORDECHAI
Created by: MORDECHAI
Comments: 2
Category: PdfViewer
Type: Feature Request
1
I would like to be able to set a list of page numbers that will be skipped/not loaded by the PDFViewer.
Unplanned
Last Updated: 13 Mar 2019 14:05 by ADMIN
Created by: Torsten
Comments: 0
Category: PdfViewer
Type: Feature Request
1
A remote go-to action is similar to an ordinary go-to action but jumps to a destination in another PDF file instead of the current file.
Declined
Last Updated: 21 Nov 2019 07:28 by ADMIN
Created by: Jorge
Comments: 1
Category: PdfViewer
Type: Feature Request
1
Implement the import of documents containing Type 3 fonts.
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);

 

Unplanned
Last Updated: 05 Mar 2021 12:14 by ADMIN
According to the PDF specification: Codes are never longer than 12 bits; therefore, entry 4095 is the last entry of the LZW table.
Unplanned
Last Updated: 24 Aug 2018 12:45 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
1
RadPdfViewer partially supports CCITTFaxDecode (that is basically TIFF). There are some limitations that are not supported at this stage like EncodedByteAlign = true or Group 3, 2-D encoding.
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.
Unplanned
Last Updated: 21 Feb 2018 13:19 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: PdfViewer
Type: Feature Request
1
Overprinting is option in the GraphicState that allows combining colors when drawing one object above another object.  It is briefly described on page 284 and page 565 in PdfReference 1.7. However, the result of overprinting is device dependent and there are no strict instructions how the result should look like. This feature also includes support for the different blending modes.
Declined
Last Updated: 27 Sep 2022 08:48 by ADMIN
Created by: Selim
Comments: 1
Category: PdfViewer
Type: Feature Request
1

Hi,

Is there a way to get version and producer metadata from imported PDF files? 

Here is how it looks in AdobeReader


Thanks in advance,

Unplanned
Last Updated: 21 Dec 2022 07:04 by Joaquin
Created by: Joaquin
Comments: 0
Category: PdfViewer
Type: Feature Request
1
Add support for XFA fields