Unplanned
Last Updated: 18 Aug 2020 13:58 by ADMIN

When importing a document containing an invalid PDF object dictionary key an exception is thrown.

 

Unplanned
Last Updated: 04 Aug 2020 07:35 by ADMIN
Exception when merging file that contains notdef characters with PdfStreamWriter
Completed
Last Updated: 29 Jul 2020 12:45 by ADMIN
Release R3 2020
For example, importing URI Action with invalid mailto URL scheme - mailto:***@***.**(E-mail), throws UriFormatException: 'Invalid URI: The hostname could not be parsed.'
Completed
Last Updated: 28 Jul 2020 14:29 by ADMIN
Release R3 2020
System.ArgumentException when setting a password to a document with form fields
Completed
Last Updated: 15 Jul 2020 10:57 by ADMIN
Release R3 2019
This is reproducible with specific PDF files which use custom Encoding for the fonts of the field widgets. 

WORKAROUND: Change the font of VariableContentWidgets before editing the field value. You should additionally call RecalculateContent() method of these widgets if the value of their corresponding fields is not edited. The following method may be used for changing the font of all existing widgets in the document:

private static void FixEncodingIssues(RadFixedDocument document)
{
    foreach(Annotation annotation in document.Annotations)
    {
        VariableContentWidget widget = annotation as VariableContentWidget;

        if(widget != null)
        {
            widget.TextProperties.Font = FontsRepository.Helvetica;
        }
    }
}
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: 07 Jul 2020 08:57 by ADMIN
Release R3 2020
According to the specification, the startfref keyword must be followed by the offset the xref table start on, defined on a new line. Some documents, however, have both entries defined on the same line, which leads to InvalidOperationException with message "Stack empty" while importing. Make sure this case is handled in PdfProcessing as well.
Unplanned
Last Updated: 01 Jul 2020 08:57 by ADMIN
This is not a valid scenario, but Adobe Acrobat handles it and we should too. 
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.

Unplanned
Last Updated: 22 Jun 2020 07:58 by ADMIN
Created by: Shirley
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
A remote go-to action is similar to an ordinary go-to action but jumps to a destination in another PDF file instead of the current file.
Unplanned
Last Updated: 17 Jun 2020 15:35 by ADMIN

PdfProcessing: Signature field validation fails if a document is imported from a byte array of CopyStream property is false.

Workaround: Set the CopyStream property of the ImportSettings to true:

PdfFormatProvider formatProvider = new PdfFormatProvider();
formatProvider.ImportSettings.CopyStream = true;
Unplanned
Last Updated: 17 Jun 2020 10:46 by ADMIN

Inserting a table with more than 10K rows is very slow.

Workaround: 

Use the following approach with SpreadStreamProcessing,SpreadProcessing and PdfProcessing:

 1) Generate an xlsx document with RadSpreadStreamProcessing 
 2) Import the document from 1) with RadSpreadProcessing 
 3) export 2) to PDF
Unplanned
Last Updated: 17 Jun 2020 09:18 by ADMIN
The CIDToGIDMap value is exported as an indirect object. When the value is a PdfString ist should be directly exported and not referred as an indirect object. 
Completed
Last Updated: 11 Jun 2020 11:24 by ADMIN
Release R2 2020 SP1
A StackOverflowException is thrown when cloning documents containing a page containing links to the same page. 
Unplanned
Last Updated: 11 Jun 2020 09:06 by ADMIN
More information is available in the Pdf Reference 1.7. Page 442 lists all predefined CMaps that should be imported and exported as PdfName objects. At this point, trying to import a document with such encoding, a NotSupportedException is thrown with message Encoding type is not supported.
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.
Unplanned
Last Updated: 04 Jun 2020 08:09 by ADMIN
Created by: Dimitar
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
In Adobe Acrobat, if you bring up the "Document Properties" dialog window and then click on the "Advanced" tab, there is a property under the "Print Dialog Presets" section called "Page Scaling". We should preserve the value on import/export and be able to set it in the code behind.
Unplanned
Last Updated: 03 Jun 2020 14:01 by ADMIN
Importing document containing TextBox widgets with NormalContentSource defining text properties, such as FontSize and Position, are exported with incorrect appearance when the value of the field is modified.
Completed
Last Updated: 03 Jun 2020 10:54 by ADMIN
Release R2 2020 SP1
The checkbox state is not correctly imported when the value is not specified
Unplanned
Last Updated: 03 Jun 2020 06:52 by ADMIN
AcroForms are not saved when splitting a document into pages. This leads to forms not being recognized when the file is imported back.