Completed
Last Updated: 01 Mar 2021 12:10 by ADMIN
Release LIB 2021.1.309 (9/3/2021)

When merging or splitting files that contain the "159 '\u009f'" char, ArgumentException("The encoding is not supported.") is thrown.

This issue can also result in ArgumentException in client applications with the message: currentIndirectObject should be null.

Workaround:

Use PdfFormatProvider or reflection to register the char (check the comments).

Unplanned
Last Updated: 25 Feb 2021 08:22 by ADMIN
When drawing text block content of a TextBoxFields the text is visualized with the wrong text due to a missing font`s fallback mechanism.
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.
Unplanned
Last Updated: 17 Feb 2021 15:06 by ADMIN
Currently, there is such an option using the FixedContentEditor`s DrawWidget() method.
Completed
Last Updated: 10 Feb 2021 10:54 by ADMIN
Release R1 2021 SP1
Currently, importing a document with non-embedded TrueType font will result in a font instance with an empty font source. Support should be added for providing custom font data of TrueType fonts during document import.
Completed
Last Updated: 10 Feb 2021 08:30 by ADMIN
Release R1 2021 SP1
The standard fonts do not respect font style and weight
Completed
Last Updated: 09 Feb 2021 16:17 by ADMIN
Release R1 2021 SP1

A Link annotation must have an associated action, destination, or named destination specifying what should happen when the annotation is activated. When merging documents with invalid Link annotations, an ArgumentException is thrown with the message 'Value cannot be null. Parameter name: namedDestination'

Workaround: Remove the invalid annotations:

foreach (var annotation in document.Annotations.ToList())
{
    var link = annotation as Link;
    if (link != null && link.Action == null && link.Destination == null && link.NamedDestination == null)
    {
        (annotation.Parent as RadFixedPage).Annotations.Remove(annotation);
    }
}

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.'
Unplanned
Last Updated: 04 Feb 2021 10:16 by ADMIN
PdfProcessing: RTL (right-to-left) text is reversed when inserting it directly to a document
Completed
Last Updated: 28 Jan 2021 10:16 by ADMIN
Release R1 2021 SP1
The exception is thrown when the endObj keyword is present without preceding obj to define the start and the reference of the current object. 
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
Unplanned
Last Updated: 08 Jan 2021 08:19 by ADMIN

When merging documents containing the same embedded font every time a document is merged the same font is repeatedly embedded in the merged document. This leads to very large files.

A possible workaround before this feature is developed could be to use the PdfProcessing model to import and merge the documents. After the documents are merged to iterate the document`s content in order to cache the fonts using their name and if there are duplicated names to set the already cached one (check the attached project). 

As a side note, the suggested workaround doesn't cover all possible cases (e.g. if there are fonts with a common name but different font sets (modified fonts or font subsets) this may lead to missing/different characters in the produced document). So in order to use this workaround, you will need to ensure the font names are unique for every different font.

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.
Completed
Last Updated: 23 Dec 2020 14:48 by ADMIN
Release R1 2021
When a TextBox field has a smaller size than the default padding of the field an exception is thrown: ArgumentOutOfRangeException: width should be greater or equal than 0. (Parameter 'width')
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);

 

Completed
Last Updated: 18 Dec 2020 10:24 by ADMIN
Release R1 2021
Completed
Last Updated: 09 Dec 2020 09:44 by ADMIN
Release LIB 2020.3.1214 (07/14/2020)
Completed
Last Updated: 03 Dec 2020 12:42 by ADMIN
Release R1 2021

When using the Telerik.Documents.ImageUtils.JpegImageConverter default implementation in Blazor WebAssembly application the Magick.NET library doesn't load all of its assemblies.

Workaround:
Create a custom implementation of the JpegImageConverterBase class: Create Custom JpegImageConverter in .Net Standard.

Unplanned
Last Updated: 23 Nov 2020 10:15 by ADMIN
Provide API for enforcing the use of only FIPS 140-2 compliant hashing algorithms.
Completed
Last Updated: 20 Nov 2020 12:57 by ADMIN
Release R1 2021
According to the Pdf Reference, a rectangle is written as an array of four numbers giving its coordinates. However, specific documents contain the numbers for the rectangles for the Type0Font's bounding box as indirect references. Trying to import such a setup results in an ArgumentException "The IndirectReference type cannot be converted to a real numeric value.".