Duplicated
Last Updated: 09 Dec 2021 07:22 by ADMIN
Created by: Maik
Comments: 6
Category: PdfProcessing
Type: Feature Request
6
Type 3 fonts are currently not supported.
Completed
Last Updated: 28 Aug 2020 07:16 by ADMIN
Release LIB 2020.2.831 (31/08/2020)
The EI keyword defines an operator for ending the image data. When the stream contains the same sequence, the parser treats that as an end of the image data. As a result, the image and the following content cannot be properly parsed and there is missing content when the document is visualized.
Unplanned
Last Updated: 04 Aug 2020 07:35 by ADMIN
Exception when merging file that contains notdef characters with PdfStreamWriter
Completed
Last Updated: 27 Feb 2023 14:53 by ADMIN
Release R1 2023 SP1
The current implementation relies on valid cross-reference offsets in the PDF documents so that PDF objects are easily found and parsed. However, a mechanism for importing documents with invalid offsets for the objects inside the stream can be implemented.
Duplicated
Last Updated: 13 Oct 2020 06:34 by ADMIN
Handle the case where the catalog starts with value other than 0
Completed
Last Updated: 17 May 2023 14:01 by ADMIN
Release R2 2023
In PDF, symbolic font programs, such as ZapfDingbats, have built-in encodings that are usually unique to each font, and ordinary their encoding cannot be overridden. When importing a document using a symbolic font with defined encoding, which overrides the build-in encoding, a KeyNotFoundException: 'The given key was not present in the dictionary.', is thrown.
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: 17 May 2023 11:35 by ADMIN
Release R2 2023

Wrong encoding is used when the PDF file contains font with custom encoding

Workaround:

foreach (var widget in field.Widgets)
{
    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: 17 May 2023 14:03 by ADMIN
Release R2 2023
Exception when trying to import symbols with the ZapfDingbats font
Completed
Last Updated: 22 May 2025 13:37 by ADMIN
Release 2025.2.520 (2025 Q2)
This is not a valid scenario, but Adobe Acrobat handles it and we should too. 
Unplanned
Last Updated: 20 May 2024 07:23 by ADMIN
Embedding a TrueType font collection using the FontsRepository.RegisterFont method leads to glyphs with empty outlines collection. The missing outlines are caused due to an empty glyf and loca tables of the TrueType font file.
Completed
Last Updated: 08 May 2023 13:59 by ADMIN
Release R2 2023
KeyNotFoundException exception is thrown when the platform type is MacintoshNonSymbolic and the encoding is WinAnsiEncoding.
Duplicated
Last Updated: 18 Apr 2024 06:22 by ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
An implementation of JPXDecoder should be created to allow the decompression of data encoded using the wavelet-based JPEG2000 standard.

Guidelines of how to provide a custom implementation of the JPXDecode filter can be found in the Customize Rendering section of the documentation and a sample implementation can be found in the SDK examples.
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.