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
2
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;
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 ". 
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. 
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.
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: 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 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.
Completed
Last Updated: 01 Sep 2021 12:16 by ADMIN
Release R1 2021
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: 02 Jun 2021 13:07 by ADMIN
Release R2 2021 SP1
By specification, the URI property of URI Actions is encoded in 7-bit ASCII string. For this reason, our current implementation relies on that the property will be of type PdfLiteralString. However, in cases such as password-encrypted documents, the property may be encoded with PdfHexString which leads to InvalidCastException: 'Unable to cast object of type Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfHexString' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfLiteralString'.', on document import.
Completed
Last Updated: 27 Jun 2023 11:19 by ADMIN
Release R2 2023 SP1
By specification, FitH destinations are defined with page and top position. A null value for top specifies that the current value of that parameter is to be retained unchanged. However, importing such a document with PdfProcessing leads to ArgumentOutOfRangeException:  'Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index'.
Completed
Last Updated: 10 May 2023 15:09 by ADMIN
When importing document with text containing char code mapped to .notdef glyph name an ArgumentException: 'The encoding is not supported.' is thrown.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
NullReferenceException has thrown when importing a form XObject with null Resources in PDF dictionary.
Unplanned
Last Updated: 28 May 2021 15:26 by ADMIN
Created by: ANTONIO
Comments: 2
Category: PdfProcessing
Type: Feature Request
18
Add a PDF document validator to validate (before the import of the document) an existing PDF document.
Completed
Last Updated: 12 Feb 2025 15:20 by ADMIN
Release 2025.1.205 (2025 Q1)
 InvalidCastException when importing a file with missing space. The file contains no space between the objects declarations and the page content and this is why the exception occurs.
Unplanned
Last Updated: 14 May 2020 15:43 by ADMIN
When importing a VariableContent widget with OpenType font, which fails to read the post table of the font file, a NullReferenceException is thrown when the RecalculateContent() method is called.

Workaround: Change the widget font:

foreach (Widget widget in textBoxField.Widgets)
{
    widget.TextProperties.Font = FontsRepository.Helvetica;
    widget.RecalculateContent();
}
Completed
Last Updated: 16 Sep 2020 12:16 by ADMIN
Release R3 2020
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.