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: 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.'

Unplanned
Last Updated: 18 Nov 2022 12:11 by Thitiwat
Created by: Thitiwat
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
Add support for Pkcs12 encoding
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.
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.
Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)

When Separation color space with "name" set as None it is falling back to an "alternateSpace" (color space) instead.

From the Pdf specification:
A Separation color space is defined as follows:
[ /Separation name alternateSpace tintTransform ]

Observed:

The None value is ignored and the color space fallbacks to the Lab color space.

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.

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.  
Unplanned
Last Updated: 04 Oct 2022 09:15 by Johann
WordsProcessing: Add support for TextDirection of table cell when exporting to pdf
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: 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'

Unplanned
Last Updated: 27 Sep 2022 06:36 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
2

From the PDF Specification: "An ink annotation represents a freehand “scribble” composed of one or more disjoint paths. When opened, it displays a pop-up window containing the text of the associated note."

Completed
Last Updated: 14 Sep 2022 13:36 by ADMIN
Release R3 2022 SP1

Such fonts are:

  • ArialMT - should fallback to Arial
  • TimesNewRomanPS-ItalicMT, TimesNewRomanPS-BoldMT, TimesNewRomanPS-BoldItalicMT - should fallback to the Times New Roman variants accordingly. 
Completed
Last Updated: 22 Sep 2022 07:56 by ADMIN
Release R3 2022 SP1
Endless loop while the PDF exporter splits a block with an image. This image size is close to the page size but cannot fit in this case.
Duplicated
Last Updated: 01 Sep 2022 13:37 by ADMIN

Cell borders are not set when the border is set on the table:

 <table border="1">

Unplanned
Last Updated: 26 Aug 2022 09:45 by Babu
Add support for custom attributes from the Kendo editor. For example "k-colgroup-data".
Unplanned
Last Updated: 15 Feb 2023 13:08 by ADMIN
Currently, when users need to add content to an existing page that is rotated, they should manually calculate the positions of the new content if they need to align it with the appearance of the page. Add API allowing them to easily transform the position respecting the top left edge of the page after its rotation.
Unplanned
Last Updated: 19 Aug 2022 11:29 by Lokesh
Index Out of bound exception when importing RTF with an image that has an odd number of hex characters.
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.