Unplanned
Last Updated: 23 Jun 2022 06:59 by Nuno
From the Part 4: PAdES Long Term - PAdES-LTV Profile (ETSI TS 102 778-4) Specification: 

"Validation of an electronic signature requires data to validate the signature such as CA certificates, Certificate Revocation List (CRLs) or Certificate status information (OCSP) commonly provided by an online service (referred to in the present document as validation data). If the document is stored and the signatures are to be verifiable long after first created, in particular after the signing certificate has expired, the original validation data may no longer available or there may uncertainty as to what validation data was used when the document was first verified."
Unplanned
Last Updated: 14 Jun 2022 09:51 by Sudhir

Images could have orientation set in their metadata:

Workaround: Rotate the image before inserting it into the RadFixedPage (check the attached project).

Unplanned
Last Updated: 08 Jun 2022 09:10 by Michel Cossette
The CombTextBoxField text alignment is wrong when a file is imported and then exported.
Duplicated
Last Updated: 08 Jun 2022 06:43 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 0
Category: PdfProcessing
Type: Feature Request
10
A rubber stamp annotation displays text or graphics intended to look as if they were stamped on the page with a rubber stamp. When opened, it displays a pop-up window containing the text of the associated note.
Completed
Last Updated: 25 May 2022 14:47 by ADMIN
Release R2 2022 SP1
Inserting a LineBreak in a TableCell Block with text exceeding Cell's width can break rendering the rest of the text, which should go on the next line of the Cell. This can result in the next line of text being invisible. 
Completed
Last Updated: 25 May 2022 13:08 by Nuno
Release R2 2022 SP1
Created by: Tanya
Comments: 12
Category: PdfProcessing
Type: Feature Request
4

Currently, signature flags, represented by the 'SigFlags' optional entry, are not imported and exported, and there is no API for setting them.
As a result, documents signed with RadPdfProcessing (or with RadPdfViewer) appear in Adobe Reader without the blue 
document message bar at the top (the analogue of the RadPdfViewer's SignaturePanel).

If the API is supported, setting the flag to 1 or 3 would ensure that the message bar would be visualized in Adobe Reader.

Declined
Last Updated: 24 May 2022 14:37 by ADMIN
According to the Pdf Specification, the ExtGState property is optional but in this specific scenario the property is not omitted but just the object implementation.

This case can be handled using the Handling Exceptions mechanism.
Unplanned
Last Updated: 24 May 2022 14:03 by Adam
By specification, the FontDescriptor is required except for Standard fonts. However, if some font has only a declaration of FontDescriptor but with a missing definition, the document is not exported successfully.
Unplanned
Last Updated: 03 May 2022 16:05 by ADMIN
Ordered list marker color not properly imported from inline CSS style in HTML.
Unplanned
Last Updated: 28 Apr 2022 09:43 by Guillaume
Created by: Guillaume
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

With the current implementation when exporting a Stitching function all the containing functions are exported as Sampled functions even if they originally have been imported as Exponential interpolation functions, which leads to an increase in the size of the document.

More information can be found in the PDF Specification.

Unplanned
Last Updated: 21 Apr 2022 06:27 by William
Field border appearance are lost during import-export of the document
Completed
Last Updated: 13 Apr 2022 15:00 by ADMIN
Release R2 2022
The table alignment is not maintained when the table is split into multiple pages. 
Completed
Last Updated: 11 Apr 2022 10:12 by ADMIN
Release R2 2022

Splitting a row leads to copying all rows below it. During that operation, the information for the row height is lost, when the previous row has a cell spanning on the split one, leading to a missing row in the exported document.

The issue is a regression introduced in R1 2021.

Unplanned
Last Updated: 29 Mar 2022 11:06 by Dimitar
Handle the case where the document has edit, copy password but no open password. We should either suppress the UserPasswordNeeded event or provide information about the password options in the arguments. 
Completed
Last Updated: 23 Mar 2022 09:05 by ADMIN
Release R1 2022 SP1
According to PDF specification, all fonts should be embedded except from 14 Standard PDF fonts. This guarantees that the PDF file is self-contained and will be rendered successfully on different devices and operation systems.

However, some clients prefer not to embed fonts in order to reduce file size. That is why we may provide such API.
Completed
Last Updated: 15 Mar 2022 14:03 by ADMIN
Release R2 2022
Provide support for inserting transparent images in Net Standard
Completed
Last Updated: 15 Mar 2022 12:13 by ADMIN
Release R2 2022
When exporting a document with a Type 1 font with custom encoding an exception is thrown: System.NotImplementedException: 'The method or operation is not implemented.'
Completed
Last Updated: 14 Mar 2022 07:31 by ADMIN
Release LIB 2022.1.307 (07 Mar 2021)
When importing a document containing Widget annotation with normal appearance dictionary set to null an exception is thrown:
.../AP<</N<</Off null/Yes 439 0 R>>...
The exception: System.ArgumentNullException: 'Value cannot be null.
Parameter name: form'
Unplanned
Last Updated: 07 Mar 2022 10:06 by Xavi

When a row has two cells and the content of the first one is large, the width of the second cell results in too small value while measuring and its content remains invisible.

Workaround: Set PreferredWidth to the second cell.

Unplanned
Last Updated: 07 Mar 2022 09:20 by Xavi

When a Table consisting of one TableRow that contains a TableCell with a Rowspan > 1 set, additional lines are added to the table.

Table table = new Table();
TableRow row = table.Rows.AddTableRow();
row.Cells.AddTableCell();
TableCell secondCell = row.Cells.AddTableCell();
secondCell.RowSpan = 2;
table.Measure();
table.Rows.AddTableRow();
The result: