Completed
Last Updated: 15 Feb 2019 16:12 by ADMIN
For some fonts the issue is present. Some of them are:

KozGoPro-Medium

KozMinPro-Regular

KozGoPro-Bold
Declined
Last Updated: 14 Feb 2019 16:16 by ADMIN
  • Create new WPFApplication.
  • Add a RadPdfViewer to the main window
<Window x:Class="YourProject.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:MaquetteTelerikPDFViewer"
        mc:Ignorable="d"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"      
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <telerik:RadPdfViewer x:Name="pdfViewer"/> 
    </Grid>
</Window>
  • Open the pdf file
    public partial class MainWindow: Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        protected override void OnInitialized(EventArgs e)
        {
            base.OnInitialized(e);
            using(Stream stream = new FileStream(@"radExport.pdf",FileMode.Open,FileAccess.Read)){
                pdfViewer.Document = new PdfFormatProvider(stream).Import();
            }
        }
    }

Declined
Last Updated: 11 Feb 2019 12:42 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Bug Report
1
Images decoded with CCITTFaxDecode filter affect the performance when showing the document.

This item is closed as a duplicate. Please, vote and follow the item at https://feedback.telerik.com/wpf/1353994-pdfviewer-slow-performance-of-ccittfaxdecode-filter.
Completed
Last Updated: 08 Feb 2019 13:50 by ADMIN
Created by: Frank
Comments: 1
Category: PDFViewer
Type: Bug Report
0
The current page changes too late, almost when the whole page is out of the view. This behavior is wrong making the page number showing the previous page when actually a new one is in the view. It should change when the second page visible height is higher than the current page visible height.
Unplanned
Last Updated: 29 Jan 2019 14:09 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: PDFViewer
Type: Feature Request
7
Most PDF viewers have option (enabled by default) which allows fields to be highlighted with colors predefined in the settings. Required fields are highlighted using different color.

For example: In Adobe Acrobat Reader DC this is enabled in "Edit" -> "Preferences" -> "Forms" -> "Highlight Color" -> "Show border hover color for fields". 
Completed
Last Updated: 21 Jan 2019 08:54 by ADMIN
Hyperlinks within a document are not working via touch. They are working only when a mouse is used.
Unplanned
Last Updated: 17 Jan 2019 07:43 by ADMIN
When the user makes the pinch gesture the expected behavior would be for the zoomed point to be the touch position, but it is instead the top left corner of the page.
Unplanned
Last Updated: 15 Jan 2019 15:25 by ADMIN
WPF allows running multiple UI threads in a single process. When RadPdfViewer is used in such scenarios, sometimes InvalidOperationException: 'The calling thread cannot access this object because a different thread owns it.' is thrown. 

Scenarios:
- Show Find dialog (or any other of the dialogs available for register in ExtensibilityManager class) for the first instance, the for the second instance.
Completed
Last Updated: 03 Jan 2019 15:45 by ADMIN
ADMIN
Created by: Tanya
Comments: 3
Category: PDFViewer
Type: Feature Request
6
Add support for importing and filling interactive forms.

Interactive Forms content is visualized read-only in RadPdfViewer UI with R1 2017 Release

Available in R3 2017 Official Release Version.
Declined
Last Updated: 28 Dec 2018 09:16 by ADMIN

The exception is thrown with the message "Password is not correct" even when the user password is correct. This issue occurs for specific encryption algorithm parameters only.

Item is declined because this functionality is not supported and has a logged feature request to support it.

Completed
Last Updated: 12 Dec 2018 09:52 by ADMIN
ADMIN
Created by: Deyan
Comments: 1
Category: PDFViewer
Type: Bug Report
2
This happens only in specific scenarios as most of the documents with annotations are visualized correctly.
Completed
Last Updated: 03 Dec 2018 12:41 by ADMIN
This might result in invisible annotations.
Completed
Last Updated: 31 Oct 2018 08:14 by ADMIN
The PdfViewer won't load a document from PdfDocumentSource created from Uri and the ReadOnDemand option.
Here is an example: new PdfDocumentSource(new Uri("webaddress/somefile.pdf"), FormatProviderSettings.ReadOnDemand);

Available in LIB Version 2017.1.130
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
The exception is thrown while decoding TIFF images. Although the document is properly loaded and the end user is not impacted, the DivideByZeroException is logged and present in the OnException event handler parameters. 
Completed
Last Updated: 31 Oct 2018 08:14 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
0
FixedDocumentPresenter could be TemplateBound to PDFViewer's Background property.

Available in LIB version: 2016.3.1205
Completed
Last Updated: 31 Oct 2018 08:14 by ADMIN
The instances are kept in GeometryRenderer cache and each time the content stream is parsed new PathGeometry instances are added to GeometyRenderer store Dictionary field.

Available in R1 2017 Official Release Version.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
This is not quite a valid PDF file scenario according to PDF file specification. However, we may try handling it in order to show the correct number of pages. When the kid is of type Pages, it should be added to the pages traversal recursion only the first time it is met.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Default RadPdfViewer presenters load image sources async which allows to render the rest PDF content faster. However, FixedDocumentSinglePagePresenter loads images syncrhonously and all page content is rendered right after all images on the page are loaded.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
Setting DocumentSource throws NullReferenceException when PdfViewer is hosted in ElementHost. When setting the DocumentSource, the Application.Dispatcher is used, but in Winforms app, the Application is not instantiated. 

Steps to reproduce:
1. Host PdfViewer in ElementHost in a WinForms application
2. Set the DocumentSource property
3. Run
Expected: The document is opened
Actual: NullReferenceException is thrown

Workaround: the document could be set to the Document property of PdfViewer. Or instead hosting the PdfViewer for WPF in ElementHost, use WinForms version of the control.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN