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. 

Unplanned
Last Updated: 27 Apr 2021 13:05 by ADMIN
The executing of the PostScriptReader`s Read method takes a lot of time when iterating content streams with many Path geometries.
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.
Completed
Last Updated: 19 Apr 2021 10:35 by ADMIN
Release R2 2021

When a TrueType font is defined, the mapping of character codes to glyph indices depends on the built-in cmap table mappings defined in the font and the Encoding property defined in the PDF dictionary.

However, the current implementation maps all characters with cmap tables for Microsoft Symbolic and Macintosh Roman, which causes incorrect mapping results, e.g. space characters are mapped to an Ê glyph.

The issue is also described in the following public item: TryGetCharCode for OpenTypeFont uses wrong cmap and returns wrong charcode.

Workaround: Change the font  of the TextBoxField's widget appearance:
foreach (var widget in field.Widgets)
{
    widget.TextProperties.Font = FontsRepository.Helvetica;
}

Unplanned
Last Updated: 19 Apr 2021 09:09 by ADMIN
There are many instances of the internal Transition, State and ImageXObject classes.
Unplanned
Last Updated: 16 Apr 2021 06:50 by ADMIN
Currently, RadFixedDocumentInfo is used only for the export of Author, Title, and Description document metadata properties.
Unplanned
Last Updated: 12 Apr 2021 09:10 by ADMIN
Currently, this missing functionality may be workaround by either drawing the headers and footers with FixedContentEditor or by using RadWordsProcessing PDF export.
Unplanned
Last Updated: 05 Apr 2021 14:59 by ADMIN
Provide an API for externally signing the document hash.
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. 
Completed
Last Updated: 26 Mar 2021 11:58 by ADMIN
Release R2 2021
Created by: Dimitar
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Implement GetColor method for Indexed color space
Completed
Last Updated: 26 Mar 2021 11:54 by ADMIN
Release R2 2021
Created by: Marc
Comments: 2
Category: PdfProcessing
Type: Feature Request
3
Add support for Lab color space to allow clients to import and export documents with Lab color space.
Completed
Last Updated: 05 Mar 2021 14:07 by ADMIN
Release R2 2021

When exporting a document referencing PdfProcessing`s .NET Standard assemblies with PdfComplianceLevel set an exception is thrown.

Declined
Last Updated: 05 Mar 2021 08:49 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

The common annotation properties are described in table "Entries common to all annotation dictionaries" of the Pdf specification.

Declined: Handling a partial annotation import-export could lead to exporting invalid PDF documents.

Completed
Last Updated: 01 Mar 2021 12:10 by ADMIN
Release LIB 2021.1.309 (9/3/2021)

When merging or splitting files that contain the "159 '\u009f'" char, ArgumentException("The encoding is not supported.") is thrown.

This issue can also result in ArgumentException in client applications with the message: currentIndirectObject should be null.

Workaround:

Use PdfFormatProvider or reflection to register the char (check the comments).

Unplanned
Last Updated: 25 Feb 2021 08:22 by ADMIN
When drawing text block content of a TextBoxFields the text is visualized with the wrong text due to a missing font`s fallback mechanism.
Unplanned
Last Updated: 19 Feb 2021 08:24 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 4
Category: PdfProcessing
Type: Feature Request
2
This functionality is currently not supported both with the FixedContentEditor and RadFixedDocumentEditor.
Unplanned
Last Updated: 17 Feb 2021 15:06 by ADMIN
Currently, there is such an option using the FixedContentEditor`s DrawWidget() method.
Completed
Last Updated: 10 Feb 2021 10:54 by ADMIN
Release R1 2021 SP1
Currently, importing a document with non-embedded TrueType font will result in a font instance with an empty font source. Support should be added for providing custom font data of TrueType fonts during document import.
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);
    }
}