Unplanned
Last Updated: 11 Jun 2020 09:02 by ADMIN
OutOfMemoryException has thrown when creating a thumbnail with the ThumbnailFactory.

This behavior is observed with binaries version 2020.2.513 or later.
Completed
Last Updated: 25 Jun 2021 07:34 by ADMIN
Release R3 2021
Created by: Robert
Comments: 1
Category: PdfProcessing
Type: Bug Report
0
Exported checkbox fields have state "/On " instead of "/Yes ". 
Duplicated
Last Updated: 25 Jun 2020 05:24 by Oskar
Created by: Oskar
Comments: 2
Category: PdfProcessing
Type: Bug Report
0

German umlauts (the characters 'Ä', 'Ö', 'Ü', 'ä', 'ö' and 'ü') will not be printed to a generated pdf file, but the other German "special" character "ß" works.

 

I use the trial version via the Telerik NuGet feed. A test program and my locally generated file are attached.

Completed
Last Updated: 08 May 2023 13:59 by ADMIN
Release R2 2023
KeyNotFoundException exception is thrown when the platform type is MacintoshNonSymbolic and the encoding is WinAnsiEncoding.
Completed
Last Updated: 17 May 2023 14:03 by ADMIN
Release R2 2023
Exception when trying to import symbols with the ZapfDingbats font
Unplanned
Last Updated: 15 Jul 2020 07:41 by ADMIN
Created by: Muthuprakash Srinivasan
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Currently Type0Font class has CMap that can only be Identity-H.
Completed
Last Updated: 17 May 2023 14:01 by ADMIN
Release R2 2023
In PDF, symbolic font programs, such as ZapfDingbats, have built-in encodings that are usually unique to each font, and ordinary their encoding cannot be overridden. When importing a document using a symbolic font with defined encoding, which overrides the build-in encoding, a KeyNotFoundException: 'The given key was not present in the dictionary.', is thrown.
Completed
Last Updated: 23 Oct 2020 06:48 by ADMIN
Release R3 2020 SP1
In the PDF specification, if the font name consists of two words, they are separated by a dash (e.g. Times-Roman).
Provide support for Standard Fonts separated by blank space (e.g. Times Roman).
Completed
Last Updated: 30 Oct 2020 14:18 by ADMIN
Release R1 2021
Currently, the implementation of the PdfFormatProvider supports the import of Link and Widget annotations. However, other annotation types, such as Text and Pop-up annotations, are imported with limited support - only some of their visual appearance properties are imported. This leads to unpredictable results when exporting or merging. However, the exception could be avoided and the annotation can be skipped. This will ensure the client application is running without errors.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
Created by: Hugo
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Annotation types may be seen on page 615 in PdfReference 1.7.
Unplanned
Last Updated: 28 Oct 2020 11:14 by ADMIN

 Tables should ignore fixed proffered width with the value of 0, this is the default behavior in Word as well.

Workaround (when converting Flow to PDF documents): 

foreach (var item in tables)
{
    if (item.PreferredWidth.Type == Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Fixed && 
        item.PreferredWidth.Value == 0)
    {
        item.PreferredWidth = new Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnit(Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Percent, 100);
    } 
  
    
}

Completed
Last Updated: 16 Nov 2020 10:08 by ADMIN
Release R1 2021

There is a wrong reference in the WPF .NET Core version of Telerik.Windows.Document.Fixed.dll that causes a FileLoadException with the message "Could not load file or assembly 'System.Drawing.Common, Version=5.0.0.0'"

Workaround: Add NuGet reference to System.Drawing.Common, version 5.0.0.0. Note: mark "Include prerelease" so you can see it in the NuGet Package Manager

Completed
Last Updated: 17 Nov 2020 09:12 by ADMIN
Release R1 2021
When the resources of a FormXObject are defined using indirect reference, an InvalidCastException is thrown while parsing the document content.
Unplanned
Last Updated: 23 Nov 2020 10:15 by ADMIN
Provide API for enforcing the use of only FIPS 140-2 compliant hashing algorithms.
Completed
Last Updated: 28 Jan 2021 10:16 by ADMIN
Release R1 2021 SP1
The exception is thrown when the endObj keyword is present without preceding obj to define the start and the reference of the current object. 
Completed
Last Updated: 10 Feb 2021 08:30 by ADMIN
Release R1 2021 SP1
The standard fonts do not respect font style and weight
Completed
Last Updated: 09 Feb 2021 16:17 by ADMIN
Release R1 2021 SP1

A Link annotation must have an associated action, destination, or named destination specifying what should happen when the annotation is activated. When merging documents with invalid Link annotations, an ArgumentException is thrown with the message 'Value cannot be null. Parameter name: namedDestination'

Workaround: Remove the invalid annotations:

foreach (var annotation in document.Annotations.ToList())
{
    var link = annotation as Link;
    if (link != null && link.Action == null && link.Destination == null && link.NamedDestination == null)
    {
        (annotation.Parent as RadFixedPage).Annotations.Remove(annotation);
    }
}

Unplanned
Last Updated: 31 Jan 2024 08:20 by ADMIN
Created by: Petar
Comments: 0
Category: PdfProcessing
Type: Bug Report
0
Fields are no longer highlighted after import. 
Declined
Last Updated: 18 Oct 2024 08:25 by ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

Typically, it is the text to be displayed for the annotation or, if the annotation does not display text, an alternate description of the annotation’s contents in human-readable form.

This item will be closed as its subject is too broad. Please refer to the information below for the individual markup annotations.

As of now, the currently supported markup annotations are:

Text
Line
Highlight
Underline
Squiggly
StrikeOut
Stamp

The unsupported annotations and their respective feedback items are:

FreeText
Square
Circle
Polygon
PolyLine
Caret
Ink
FileAttachment
Sound

Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
The document text is overlapped and not possible to read for a specific document. Most of the text is moved to the bottom of the page.