Completed
Last Updated: 11 May 2023 05:45 by ADMIN
Release R2 2023

With the current implementation, the Standard Fonts preloaded in the FontsRepository cannot be replaced.

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: 10 May 2023 14:54 by ADMIN
Release R3 2023
When a document contains an ICCBased ColorSpace and a Shadings Pattern the import of the document could be very slow.
Unplanned
Last Updated: 10 May 2023 08:09 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Add support for GoToE action
Completed
Last Updated: 08 May 2023 14:01 by ADMIN
Release R2 2023
ADMIN
Created by: Deyan
Comments: 2
Category: PdfProcessing
Type: Feature Request
19
Currently, Standard fonts are exported always with StandardEncoding. This does not allow export of some special characters which do not fit in the first 255 glyph definitions in the font. Most of these characters are the ones with an accent such as "Eacute" glyph (É) which is with position number 303 in Times Roman font. The list of all standard fonts may be found in this documentation section:
https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/concepts/fonts#standard-fonts
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.
Completed
Last Updated: 04 May 2023 09:22 by ADMIN
Release R2 2023
The image matrix is wrongly exported, leading to inconsistency with the original one.
Completed
Last Updated: 24 Apr 2023 13:27 by ADMIN
Release R2 2023
The CalGray color space properties are not correctly exported in an array.
Completed
Last Updated: 20 Apr 2023 13:49 by ADMIN
Release R2 2023
Errors when validating signed pdf files with VeraPdf and 3-Heights(TM) PDF validators
Unplanned
Last Updated: 19 Apr 2023 11:04 by Martin
With the current implementation, the documents containing Standard Fonts are not PDF/A compliant (check How to Comply with PDF/A Standard).
Completed
Last Updated: 19 Apr 2023 08:43 by ADMIN
Release R2 2023
When opened in Adobe Reader it says that the file "claims compliance". However, when verifying the compliance with some validation tools there seem to be some issues mainly related but not limited to fonts. 
Unplanned
Last Updated: 12 Apr 2023 16:17 by George
Created by: George
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

Hi there,

I've been researching how to use Telerik PDFProcessing to Digitally Sign a PDF. But can't find any documentation on how to incorporate it into ASP.Net AJAX (VB).


Can you please point me in the direction of where to look, or if you have a sample application that would be very helpful.

Essentially, I'm just trying to digitally sign the PDF document that I've exported with the embedded signature panel with a PKF file.
Completed
Last Updated: 07 Apr 2023 05:20 by ADMIN
Release R2 2023

When the indirect object contains more spaces between the object number and the generation number the object content is not successfully parsed.

Expected: one space

Actual: more than one space

Unplanned
Last Updated: 06 Apr 2023 19:10 by Lee
Created by: Lee
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Provide API for inserting Watermarks that depend on Optional Content / PDF Layers (Not to be confused with Watermark Annotations).
Completed
Last Updated: 03 Apr 2023 13:16 by ADMIN
Release R2 2023

Setting a filter on a mask results in an invalid file when exporting. 

Workaround: Set the filer like this:

PdfFormatProvider provider = new PdfFormatProvider();
provider.ExportSettings.ImageCompression = new ImageFilterTypes[] { ImageFilterTypes.FlateDecode };

Completed
Last Updated: 31 Mar 2023 10:51 by ADMIN
Release R2 2023
When the document contains an encrypted Hex string in Bookmark titles the strings are not decrypted and they are wrongly displayed.

The observed result using the WPF PdfViewer:

Completed
Last Updated: 31 Mar 2023 06:49 by ADMIN
Release R2 2023
When the image within a document is compressed with FlateDecode and there is no specific ImageFilterTypes set the image data is exported with FlateDecode compression but a wrong DCTDecode filter name is set which leads to a broken PDF file.

Workaround: Set explicitly the the ImageCompression filter:
PdfFormatProvider provider = new PdfFormatProvider();
provider.ExportSettings.ImageCompression = new ImageFilterTypes[] { ImageFilterTypes.FlateDecode };
Completed
Last Updated: 31 Mar 2023 06:33 by ADMIN
Release R2 2023
Repeating header rows are not imported correctly. 
Duplicated
Last Updated: 28 Mar 2023 08:29 by ADMIN

When a document containing a SignatureField is exported with the IsEncrypted property set to true, a not set UserPassword is required to open it, which makes it impossible to be opened.

Workaround: Exporting with AES256 encryption does not have this problem:

provider.ExportSettings = new PdfExportSettings
{
	IsEncrypted = true,
	EncryptionType = EncryptionType.AES256
};

 

Unplanned
Last Updated: 27 Mar 2023 09:42 by Damien
Created by: Damien
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
With the current implementation, all the pages are imported.