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.
Unplanned
Last Updated: 31 Mar 2021 11:21 by ADMIN
Created by: Tanya
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
The PDF model allows actions to be defined for widgets using the optional /A entry. 
Unplanned
Last Updated: 05 Apr 2021 14:59 by ADMIN
Provide an API for externally signing the document hash.
Completed
Last Updated: 19 Apr 2021 10:46 by ADMIN
Release R2 2021
When exporting TextBoxField with a Simple font and a Differences array defined in the Encoding, the CharCodes covered by this array are incorrectly mapped to glyph indices.
Unplanned
Last Updated: 10 May 2021 11:03 by ADMIN

Adding a table with the same code leads to different results 

When adding 10 identical tables onе or more have missing rows at the bottom. The seems to be caused by the text measurement. 

Completed
Last Updated: 10 Jun 2021 14:08 by ADMIN
Release R2 2021 SP1

When importing such documents an InvalidDataException (Unknown compression method <method-name>) is thrown.

According to the current .ZIP File Format Specification these methods are 7, 11, 13, 15, and 17.

Compression method:

        0 - The file is stored (no compression)
        1 - The file is Shrunk
        2 - The file is Reduced with compression factor 1
        3 - The file is Reduced with compression factor 2
        4 - The file is Reduced with compression factor 3
        5 - The file is Reduced with compression factor 4
        6 - The file is Imploded
        7 - Reserved for Tokenizing compression algorithm
        8 - The file is Deflated
        9 - Enhanced Deflating using Deflate64(tm)
       10 - PKWARE Data Compression Library Imploding (old IBM TERSE)
       11 - Reserved by PKWARE
       12 - File is compressed using BZIP2 algorithm
       13 - Reserved by PKWARE
       14 - LZMA
       15 - Reserved by PKWARE
       16 - IBM z/OS CMPSC Compression
       17 - Reserved by PKWARE
       18 - File is compressed using IBM TERSE (new)
       19 - IBM LZ77 z Architecture 
       20 - deprecated (use method 93 for zstd)
       93 - Zstandard (zstd) Compression 
       94 - MP3 Compression 
       95 - XZ Compression 
       96 - JPEG variant
       97 - WavPack compressed data
       98 - PPMd version I, Rev 1
       99 - AE-x encryption marker (see APPENDIX E)
Unplanned
Last Updated: 24 Sep 2021 13:10 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

PDF / X: the X stands for exchange; a PDF / X document can in principle be processed by any printing company. This means, for example, that only CMYK colors may be used, that all fonts must be present in the PDF, that the document must not be encrypted, and so on.

Completed
Last Updated: 28 Jun 2021 10:20 by ADMIN
Release R3 2021
The checkbox state is not correctly exported when the value is specified.
Completed
Last Updated: 10 Jun 2021 11:58 by ADMIN
Release R2 2021 SP1
When importing a document containing an inline image that starts with spaces a NullReferenceException is thrown.
Unplanned
Last Updated: 09 Jun 2021 08:11 by ADMIN
Implement async PDF conversion from RadFlowDocument and Workbook
Completed
Last Updated: 03 Aug 2021 14:26 by ADMIN
An exception when the NormalContentSource of a widget is null and one flatten the form fields 
Completed
Last Updated: 11 May 2023 05:45 by ADMIN
Release R2 2023

With the current implementation, the Standard Fonts preloaded in the FontsRepository cannot be replaced.

Declined
Last Updated: 07 Jul 2021 11:45 by ADMIN
Created by: Charles
Comments: 1
Category: PdfProcessing
Type: Feature Request
0

Attempting to open a Pdf document containing an unsupported action type results in a NotSupportedActionException being thrown (see PdfProcessing: Add support for actions of type Launch).

 

Can the behavior be changed to ignore unsupported actions and allow the document to be opened?

 
Completed
Last Updated: 14 Jul 2021 08:10 by ADMIN
Release R3 2021
When calling the RadFixedDocument`s Clone() method the RadFixedPage`s MediaBox and CropBox are not copied.
Completed
Last Updated: 13 Nov 2024 08:51 by ADMIN
Release 2024.4.1106 (Q4 2024)
Created by: Tao
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

With the current implementation, the Trigger Events are skippet on import.

From the PDF Specification: An annotation, page object, or interactive form field may include an entry named AA that specifies an additional-actions dictionary that extends the set of events that can trigger the execution of an action.