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
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.
In Development
Last Updated: 24 Apr 2025 08:55 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.
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.
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. 
Completed
Last Updated: 02 Feb 2023 16:03 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
InvalidCastException is thrown when importing a document containing Byte order marks (BOM) at the beginning of the file. The bytes are read as part of the document content and this changes all the document`s offsets.
Completed
Last Updated: 22 May 2025 13:37 by ADMIN
Release 2025.2.520 (2025 Q2)

When merging documents` pages using the PdfStreamWriter the Form Fields are not copied:

using (PdfStreamWriter fileWriter = new PdfStreamWriter(File.OpenWrite(document2Name)))
{
	// Iterate through the files you would like to merge 
	for (int i = 0; i < 2; i++)
	{
		// Open each of the files 
		using (PdfFileSource fileToMerge = new PdfFileSource(File.OpenRead(document1Name)))
		{
			// Iterate through the pages of the current document 
			foreach (PdfPageSource pageToMerge in fileToMerge.Pages)
			{
				// Append the current page to the fileWriter, which holds the stream of the result file 
				fileWriter.WritePage(pageToMerge);
			}
		}
	}
}

A possible workaround is to use the RadFixedDocument`s Merge() method: 

document1.Merge(document2);

 

Duplicated
Last Updated: 07 Jan 2021 08:07 by ADMIN
Hi, i want to export a pdf with the options to disable all permissions except printing, thank you.
Unplanned
Last Updated: 08 Jan 2021 11:02 by ADMIN
Created by: Dimitar
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
Add support for the PAdES-BES signature standard
Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
PdfProcessing: RTL (right-to-left) text is reversed when inserting it directly to a document
Unplanned
Last Updated: 04 Feb 2021 11:39 by ADMIN
Created by: Thomas
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
Currently, the UseCmap operator is not supported and when trying to import a document using such Cmap an exception is thrown: System.InvalidOperationException: 'Empty CodeSpaceRanges collection.'
Completed
Last Updated: 27 Jun 2023 14:27 by ADMIN
Release R2 2023 SP1
When using the PdfStreamWriter to write a PdfPageSource whose content has "Predictor 1" set as DecodeParms an error message is shown when opening the exported document with Adobe reader.
Unplanned
Last Updated: 13 Oct 2022 05:39 by Bilal
Support import of images defined with v:imagedata element (VML Object) in Docx
In Development
Last Updated: 15 Apr 2025 09:43 by ADMIN
Created by: Johannes
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
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: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
PdfProcessing: Invalid annotation position leads to missing content.
Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
From the PDF specification: "The current stroking alpha constant, specifying the constant shape or constant opacity value to be used for stroking operations in the transparent imaging model."

Not respecting it leads to lost image transparency.
Unplanned
Last Updated: 19 Sep 2024 08:53 by Jeff
Created by: Jeff
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
The use case we should cover is make stamp or other signatures immovable.
Completed
Last Updated: 12 Feb 2025 15:19 by ADMIN
Release 2025.1.205 (2025 Q1)

When exporting the pdf pages as images with the Skia engine, some parts of the document got missing.

Note: In the previous Version 2024.3.806 these parts appeared.

Completed
Last Updated: 22 May 2025 13:37 by ADMIN
Release 2025.2.520 (2025 Q2)
Handle the import of documents with Associated Files (/AF) elements whose content is set to null.