Unplanned
Last Updated: 26 Nov 2021 10:21 by ADMIN
Created by: edwin tan
Comments: 0
Category: PdfProcessing
Type: Bug Report
1
When the document contains hidden PDF layers they are imported as visible which leads to additional content in the exported document.
Unplanned
Last Updated: 29 Nov 2021 10:49 by ADMIN
Created by: Al
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
 Extend the FixedDocumentEditor`s DrawRectangle() method to draw rounded rectangles.
Unplanned
Last Updated: 30 Nov 2021 13:24 by ADMIN
In the .NET Framework version, this is implemented by returning the Image.GetBitmapSource() which returns a BitmapSource instance.
Unplanned
Last Updated: 10 Jan 2022 11:35 by ADMIN

When exporting a specific document with a CIDFontType0 font (Korean TAWBUL+HGGGothicssiP80g or BPRSCV+HGGGothicssiP60g) the document is wrongly exported which leads to missing content.

Workaround:
After import you can change the font:

pdfDocument = provider.Import(memory);

FontBase malgunGothicFont;
FontsRepository.TryCreateFont(new FontFamily("Malgun Gothic"), out malgunGothicFont);

foreach (RadFixedPage page in pdfDocument.Pages)
{
	foreach (ContentElementBase element in page.Content)
	{
		TextFragment textFragment = element as TextFragment;
		if (textFragment != null && (textFragment.Font.Name == "TAWBUL+HGGGothicssiP80g" || textFragment.Font.Name == "BPRSCV+HGGGothicssiP60g"))
		{
			textFragment.Font = malgunGothicFont;
		}
	}
}

Unplanned
Last Updated: 20 Jan 2022 08:15 by ADMIN
The classes are not correctly imported and applied from HTML when declared in a CSS style
Completed
Last Updated: 15 May 2024 06:30 by ADMIN
Release 2024.2.426 (2024 Q2)
A dictionary with an invalid entry cannot be imported correctly and breaks the import process. 
Duplicated
Last Updated: 08 Feb 2022 13:02 by ADMIN
Exporting nested tables causes wrong table row heights.
Completed
Last Updated: 14 Feb 2022 12:23 by ADMIN
Release LIB 2022.1.221 (21 Feb 2021)
NullReferenceException when converting nested tables to PDF and the vertical alignment is set.
Unplanned
Last Updated: 09 Feb 2022 08:22 by Christine
Specific TextFragments that are positioned a little further from the previous text are incorrectly recognized as word start by the text recognizer engine and result in additional white spaces in the exported text.  
Completed
Last Updated: 16 Feb 2022 13:33 by ADMIN
Release R1 2022 SP1

When exporting PDF documents containing images different than Jpeg and Jpeg2000 the PdfProcessing is using by default the ImageSharp library in order to convert these images to Jpeg.

It seems there is an issue in the older version of the ImageSharp library: Saving a PNG as Jpeg only processes a part of the image on .NET 6.

Workaround: This issue seems to be fixed in the current version (2.0.0) of the ImageSharp library.

Unplanned
Last Updated: 15 Feb 2022 08:58 by Emre

Currently, the text extraction is following the behavior (text distance) as exported with Adobe.

Provide a setting in TextFormatProvider in order to keep the original distance as in the PDF document.

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