Unplanned
Last Updated: 23 Jan 2023 10:46 by Sachin
When inserting a specific Jpeg image with an ICC profile there is a problem when opening the file in Adobe: 



On the other hand, the PDF is successfully opened by browsers and most PDF viewers.
Unplanned
Last Updated: 20 Jan 2023 10:52 by Josh

Table cell content is not displayed after PDF export if cell Preferred Width is too small.

Workaround: Make cell Size(Preferred Width) big enough for the contents to fit.

 
Unplanned
Last Updated: 20 Jan 2023 09:16 by Xiao
Incorrect cell borders when converting to PDF and a table that contains borders with different colors.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1

With the current implementation when passing the font file using the FontsRepository the entire font file is embedded.

In order to embed only a subset of characters used in the document, the font should be installed and the font shouldn't be registered in the FontsRepository.

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023

When importing a document containing an EI keyword not followed by space or return an exception is thrown: EndOfStreamException: 'Attempted to read past the end of the stream.'

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023

We should implement the logic for getting character codes from Unicode when using CFFFontSource. Workaround: The font may be changed by creating a similar font with FontsRepository.TryCreateFont(...) method.

Telerik.Windows.Documents.Fixed.Model.Fonts.FontsRepository.RegisterFont(new Telerik.Documents.Core.Fonts.FontFamily("Arial"), Telerik.Documents.Core.Fonts.FontStyles.Normal, Telerik.Documents.Core.Fonts.FontWeights.Normal, fontData); // fontData is a byte[] keeping the font definition

FontBase font;
bool hasCreatedFont = FontsRepository.TryCreateFont(new FontFamily("Arial"), out font);
 
foreach (TextField field in document.AcroForm.FormFields.OfType<TextField>())
{
    if (hasCreatedFont)
    {
        foreach (var widget in field.Widgets)
        {
            widget.TextProperties.Font = font;
        }
 
        field.TextProperties.Font = font;
    }
}

Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
Wrong header/footer exported when the document's first section is of type continuous.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
ADMIN
Created by: Deyan
Comments: 8
Category: PdfProcessing
Type: Feature Request
24
Currently, NotSupportedEncryptionException is thrown.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
ADMIN
Created by: Deyan
Comments: 2
Category: PdfProcessing
Type: Feature Request
14
Implement Find methods which enable the users to search for a concrete string/content/text in a Pdf document (RadFixedDocument).
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023

When importing a PDF document and parsing a name start character followed by a dictionary end one an exception is thrown: System.InvalidOperationException: 'Stack empty.'

Unplanned
Last Updated: 17 Jan 2023 07:19 by ADMIN
Created by: Lazar
Comments: 6
Category: PdfProcessing
Type: Feature Request
26
Implement functionality to support scenario when a document which already has a signature to be signed again or add two or more signatures.
Unplanned
Last Updated: 05 Jan 2023 12:28 by Philip

With the current implementation, the permissions are ignored on import.

As a side note, there is an option to set permissions on export: UserAccessPermissions.

Unplanned
Last Updated: 18 Nov 2022 12:11 by Prakorb
Created by: Prakorb
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
Add support for Pkcs12 encoding
Completed
Last Updated: 16 Nov 2022 08:10 by ADMIN
Release LIB 2020.1.330 (03/30/2020)
When a document is imported the FontsRepository caches the created font instances for performance reasons. API should be provided for clearing the cached instances in order to reduce memory consumption.
Unplanned
Last Updated: 09 Nov 2022 16:12 by Foxy
PdfProcessing partially supports CCITTFaxDecode (that is basically TIFF). There are some limitations that are not supported at this stage like EncodedByteAlign = true or Group 3, 2-D encoding.
Unplanned
Last Updated: 13 Oct 2022 05:39 by Bilal
Support import of images defined with v:imagedata element (VML Object) in Docx
Unplanned
Last Updated: 06 Oct 2022 08:34 by Jussi
Non-ASCII characters are not correctly resolved in the widget appearance with a specific document.  
Completed
Last Updated: 04 Oct 2022 14:57 by ADMIN
Release R3 2022 SP1

When exporting a document that contains a Widget created with FixedContentEditor an exception is thrown: System.ArgumentNullException: 'Value cannot be null. Parameter name: context'

It can be reproduced using the following code snippet:

RadFixedDocument document = new RadFixedDocument();
var page = document.Pages.AddPage();
FixedContentEditor editor = new FixedContentEditor(page);

PushButtonField pushButton = new PushButtonField("button");
editor.Position.Translate(20, 450);
editor.DrawWidget(pushButton, new Size(100, 20));

string path = "Exported.pdf";
File.Delete(path);

using (Stream output = File.OpenWrite(path))
{
	PdfFormatProvider provider = new PdfFormatProvider();
	provider.Export(document, output);
}

Workaround: Add the form filed to the AcroForm`s FromFields collection before exporting the document:
document.AcroForm.FormFields.Add(pushButton);

Unplanned
Last Updated: 04 Oct 2022 09:15 by Johann
WordsProcessing: Add support for TextDirection of table cell when exporting to pdf
Unplanned
Last Updated: 28 Sep 2022 07:08 by Tania

When writing a RadFixedPage containing widgets using the PdfPageStreamWriter.WriteContent() method an exception is thrown.

The exception: System.ArgumentNullException: 'Value cannot be null. Parameter name: context'