Unplanned
Last Updated: 24 Feb 2022 07:38 by Fritz
Created by: Fritz
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
LaTeX is a high-quality typesetting system; it includes features designed for the production of technical and scientific documentation.
Unplanned
Last Updated: 07 Mar 2022 09:01 by Ludivine

According to the PDF SpecificationThe first entry in the table (object number 0) is always free and has a generation number of 65,535;

An invalid xref table:

xref
1 3
0000000010 00000 n
0000000124 00000 n
0000011290 00000 n
A valid one:
xref
0 4
0000000000 65535 f
0000000010 00000 n
0000000124 00000 n
0000011290 00000 n

Completed
Last Updated: 15 Mar 2022 12:13 by ADMIN
Release R2 2022
When exporting a document with a Type 1 font with custom encoding an exception is thrown: System.NotImplementedException: 'The method or operation is not implemented.'
Completed
Last Updated: 25 May 2022 14:47 by ADMIN
Release R2 2022 SP1
Inserting a LineBreak in a TableCell Block with text exceeding Cell's width can break rendering the rest of the text, which should go on the next line of the Cell. This can result in the next line of text being invisible. 
Completed
Last Updated: 13 Apr 2022 15:00 by ADMIN
Release R2 2022
The table alignment is not maintained when the table is split into multiple pages. 
Unplanned
Last Updated: 03 May 2022 16:05 by ADMIN
Ordered list marker color not properly imported from inline CSS style in HTML.
Unplanned
Last Updated: 09 Aug 2022 09:27 by ADMIN
A table that contains a cell with a single block with a lot of new lines is not split correctly.
Unplanned
Last Updated: 04 Sep 2023 11:16 by ADMIN
The auto-size fields are not correctly imported/exported this setting is lost during export 
Unplanned
Last Updated: 24 Jun 2022 08:19 by Lokesh

The table border styles are not imported correctly with a specific document.

Workaropund:

RtfFormatProvider provider = new RtfFormatProvider();
RadFlowDocument document = provider.Import(File.ReadAllText(@"..\..\test.rtf"));
 
PdfFormatProvider pdfProvider = new PdfFormatProvider();
var tables = document.EnumerateChildrenOfType<Table>();

foreach (var table in tables)
{
    table.Borders = new TableBorders(new Border(BorderStyle.None));
}


using (FileStream stream = File.OpenWrite(@"..\..\result.pdf"))
{
    pdfProvider.Export(document, stream);
}

 

 

Completed
Last Updated: 09 Feb 2023 10:58 by ADMIN
Release R1 2023 SP1
Wrong matrix calculations lead to incorrect image (Form XObject) during export
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: 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: 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: 14 Feb 2023 07:55 by Bob
Release R1 2023 SP1
ArgumentException when the font box contains negative width or height 
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.

Completed
Last Updated: 13 Feb 2023 15:37 by ADMIN
Release R1 2023 SP1
When importing documents with more than one cross-reference table that have not Prev tables specified the incorrect table is processed.
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.
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.

 
Completed
Last Updated: 25 Jan 2023 16:22 by ADMIN
Release Release R1 2023 SP1
The import freezes due to a lot of checks in the HandleInvalidClippingPathOperatorPosition method.
Unplanned
Last Updated: 25 Jan 2023 09:27 by Martin

Support for validating signature fields signed with signatures that are encoded in ETSI.RFC3161 encoding should be added.

Currently, when invoking the Signature`s TryValidate() method an exception is thrown: NotSupportedException: 'No signature validation handler was found for the subfilter: ETSI.RFC3161'