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
3
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.
Unplanned
Last Updated: 24 Mar 2023 07:42 by Alon Rosenberg

InvalidOperationException Cannot find the "endstream" keyword with a specific file.

According to the PDF Specification:

A stream consists of a dictionary followed by zero or more bytes bracketed between the keywords stream and endstream:

dictionary
stream
… Zero or more bytes …
endstream

Completed
Last Updated: 20 Mar 2023 07:20 by ADMIN
Release R1 2023 SP1
This exception seems to be related to AES algorithm PaddingMode property. 
Duplicated
Last Updated: 14 Mar 2023 07:57 by ADMIN
Created by: Johannes
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Implement ShadingType 7
Unplanned
Last Updated: 14 Mar 2023 06:33 by ADMIN
Wrong text appearance when editing field because of the wrong FieldFlag ("Ff") exported.

Declined
Last Updated: 13 Mar 2023 14:04 by ADMIN
Export should take into account JavaScript and produce PDF similar to the original page.
Unplanned
Last Updated: 10 Mar 2023 08:19 by Ottar
Fields are doubled according to ItextSharp after import/export. 
Completed
Last Updated: 09 Mar 2023 14:39 by ADMIN
Release R1 2023 SP1
The image stream is not compressed resulting in a bigger size of the generated file.
Completed
Last Updated: 09 Mar 2023 14:35 by ADMIN
Release R1 2023 SP1
Images are decompressed during import/export which result in significantly larger files
Unplanned
Last Updated: 01 Mar 2023 09:06 by Johannes
Created by: Johannes
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Add support for GoToR action
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.