Declined
Last Updated: 04 Nov 2019 09:38 by ADMIN
Created by: Daniel
Comments: 1
Category: PdfProcessing
Type: Feature Request
2
We would like to search a PDF document for specific text and returns its position. We generate PDF reports using Telerik Reporting which contain placeholders that are replaced with images and text at run-time. It appears the logic has already been implemented, but the implementing classes (e.g., TextSearch, TextRecognizer) aren't accessible. Please consider making this capability available.
Unplanned
Last Updated: 06 Feb 2020 15:14 by ADMIN
The values of rotated widgets on a rotated page are invisible after exporting them. The value can be seen only while editing a field.
Unplanned
Last Updated: 13 Feb 2020 12:58 by ADMIN
Created by: Patrick
Comments: 1
Category: PdfProcessing
Type: Feature Request
2

Hello Telerik,

Last time we attempted this the <Viewbox> contents would not render and were empty upon xaml to pdf output. It would be great if you had this feature and we could move completely away from raster output to PDF for controls that contain Viewboxes. Otherwise we have really liked the PDF's created by the tool, the vector output is sharp as expected.

Thank you,

Patrick

Completed
Last Updated: 26 Oct 2021 10:37 by ADMIN
Release R3 2020
A KeyNotFoundException is thrown when trying to open a PDF containing specific Type1 font.
Completed
Last Updated: 16 Sep 2020 11:59 by ADMIN
Release R3 2020
Created by: Pochun
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Currently Type0Font class has CMap that can only be Identity-H. The Identity-V is a vertical version of Identity−H. The mapping is the same as for Identity−H.
Completed
Last Updated: 27 May 2021 11:28 by ADMIN
Release LIB 2021.2.531 (31/05/2021)

When the document contains Simple Font with predefined encoding and no ToUnicode mapping the text should be extracted with the following algorithm:

  • Map the character code to a character name according to the font’s Differences array.
  • Look up the character name in the Adobe Glyph List to obtain the corresponding Unicode value. 

Currently, the PdfProcessing library doesn't map the character code properly which leads to wrongly encoded text content.

Unplanned
Last Updated: 01 May 2020 12:22 by ADMIN
Created by: Joe
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
A submit-form action transmits the names and values of selected interactive form fields to a specified uniform resource locator (URL), presumably the address of a Web server that will process them and send back a response. Preserve the existing submit-form actions in the document and expose functionality enabling the users to create or modify such actions.
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.
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();
}
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: 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.
Duplicated
Last Updated: 13 Oct 2020 06:34 by ADMIN
Handle the case where the catalog starts with value other than 0
Unplanned
Last Updated: 04 Sep 2020 11:20 by ADMIN
After a PDF document is imported, decoding large images with a CCITTFaxDecode filter leads to OutOfMemoryException.
Completed
Last Updated: 25 Sep 2020 13:18 by ADMIN
Release R3 2020 SP1
When importing an embedded Type 1 Font with custom encoding an InvalidCastException is thrown.
Completed
Last Updated: 23 Oct 2020 06:48 by ADMIN
Release R3 2020 SP1

An InvalidCastException is thrown when importing documents containing outlines with an invalid destination set:

The exception:

System.InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfReal' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName'.'


Unplanned
Last Updated: 22 Dec 2020 10:49 by ADMIN

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);

 

Unplanned
Last Updated: 19 Feb 2021 08:24 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 4
Category: PdfProcessing
Type: Feature Request
2
This functionality is currently not supported both with the FixedContentEditor and RadFixedDocumentEditor.
Duplicated
Last Updated: 15 Oct 2021 06:22 by ADMIN
Created by: Dimitar
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Provide support for exporting type3 fonts
Unplanned
Last Updated: 07 Sep 2021 11:12 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. An InvalidOperationException is thrown with the message "Password is not correct." when importing with PdfProcessing; Adobe Acrobat also doesn't recognize the password.

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

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

 

Unplanned
Last Updated: 20 Oct 2021 08:04 by ADMIN

Wrong calculations of new lines and white spaces between characters due to a wrong calculated character`s BoundingRect.

This results in missing whitespaces and/or characters split between lines.