Unplanned
Last Updated: 18 Nov 2020 13:52 by ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
5

Support for exporting WMF (Windows Metafile) and EMF (Enhanced Metafile) images should be implemented for the Net Standard version.

To allow the library to export such images you can use the extensibility point for providing a custom implementation of the JpegImageConverterBase. More information and examples can be found in the PdfProcessing`s Cross-Platform Support help and Create Custom JpegImageConverter in .Net Standard knowledge base articles.

Completed
Last Updated: 17 Nov 2020 09:12 by ADMIN
Release R1 2021
When the resources of a FormXObject are defined using indirect reference, an InvalidCastException is thrown while parsing the document content.
Completed
Last Updated: 16 Nov 2020 10:08 by ADMIN
Release R1 2021

There is a wrong reference in the WPF .NET Core version of Telerik.Windows.Document.Fixed.dll that causes a FileLoadException with the message "Could not load file or assembly 'System.Drawing.Common, Version=5.0.0.0'"

Workaround: Add NuGet reference to System.Drawing.Common, version 5.0.0.0. Note: mark "Include prerelease" so you can see it in the NuGet Package Manager

Completed
Last Updated: 30 Oct 2020 14:18 by ADMIN
Release R1 2021
Currently, the implementation of the PdfFormatProvider supports the import of Link and Widget annotations. However, other annotation types, such as Text and Pop-up annotations, are imported with limited support - only some of their visual appearance properties are imported. This leads to unpredictable results when exporting or merging. However, the exception could be avoided and the annotation can be skipped. This will ensure the client application is running without errors.
Unplanned
Last Updated: 28 Oct 2020 11:14 by ADMIN

 Tables should ignore fixed proffered width with the value of 0, this is the default behavior in Word as well.

Workaround (when converting Flow to PDF documents): 

foreach (var item in tables)
{
    if (item.PreferredWidth.Type == Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Fixed && 
        item.PreferredWidth.Value == 0)
    {
        item.PreferredWidth = new Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnit(Telerik.Windows.Documents.Flow.Model.Styles.TableWidthUnitType.Percent, 100);
    } 
  
    
}

Unplanned
Last Updated: 27 Oct 2020 09:56 by ADMIN
Created by: René
Comments: 1
Category: PdfProcessing
Type: Feature Request
11

or there should be an optional parameter "bool AcceptNewlines" or "bool IgnoreNewlines"

 

Currently, this can be implemented like this:

private void InsertTextWithNewlines(Block block, string text)
{
    string[] lines = text.Split(new[] {"\r\n", "\r", "\n"}, StringSplitOptions.None);

    for (int i = 0; i < lines.Length; i++)
    {
       block.InsertText(lines[i]);
       if (i < lines.Length - 1)
       {
          block.InsertLineBreak();
       }
    }
}

Completed
Last Updated: 23 Oct 2020 06:48 by ADMIN
Release R3 2020 SP1
In the PDF specification, if the font name consists of two words, they are separated by a dash (e.g. Times-Roman).
Provide support for Standard Fonts separated by blank space (e.g. Times Roman).
Completed
Last Updated: 23 Oct 2020 06:48 by ADMIN
Release R3 2020 SP1

An InvalidCastException is thrown when importing documents containing outlines with an invalid destination set:

The exception:

System.InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfReal' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName'.'


Completed
Last Updated: 16 Oct 2020 11:27 by ADMIN
Release R3 2020 SP1
By specification the explicit destinations define a required page property. However, some documents contain definition for destinations with null page value, which causes an ArgumentNullException on import.
Duplicated
Last Updated: 13 Oct 2020 06:34 by ADMIN
Handle the case where the catalog starts with value other than 0
Completed
Last Updated: 25 Sep 2020 13:18 by ADMIN
Release R3 2020 SP1
When importing an embedded Type 1 Font with custom encoding an InvalidCastException is thrown.
Completed
Last Updated: 16 Sep 2020 12:17 by ADMIN
Release R3 2020
This exception corrupts the whole document import. Instead, we should provide Exception handling mechanism which allows the user to import the rest of the content.
Completed
Last Updated: 16 Sep 2020 12:16 by ADMIN
Release R3 2020
More information is available in the Pdf Reference 1.7. Page 442 lists all predefined CMaps that should be imported and exported as PdfName objects. At this point, trying to import a document with such encoding, a NotSupportedException is thrown with message Encoding type is not supported.
Completed
Last Updated: 16 Sep 2020 11:59 by ADMIN
Release R3 2020
Created by: Pochun
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Currently Type0Font class has CMap that can only be Identity-H. The Identity-V is a vertical version of Identity−H. The mapping is the same as for Identity−H.
Unplanned
Last Updated: 04 Sep 2020 11:20 by ADMIN
After a PDF document is imported, decoding large images with a CCITTFaxDecode filter leads to OutOfMemoryException.
Completed
Last Updated: 01 Sep 2020 08:52 by ADMIN
Release R3 2020
When importing color space defined as an external resource name, a NotSupportedColorSpaceException: 'CS0 color space is not supported.' is thrown.
Completed
Last Updated: 28 Aug 2020 07:36 by ADMIN
Release LIB 2020.2.831 (31/08/2020)
NullReferenceException is thrown when importing a PDF document containing InlineImage with missing parameters
Completed
Last Updated: 28 Aug 2020 07:16 by ADMIN
Release LIB 2020.2.831 (31/08/2020)
The EI keyword defines an operator for ending the image data. When the stream contains the same sequence, the parser treats that as an end of the image data. As a result, the image and the following content cannot be properly parsed and there is missing content when the document is visualized.
Completed
Last Updated: 21 Aug 2020 08:41 by ADMIN
Release R3 2020
When importing document with predefined ToUnicode CMaps (e.g. Identity-H), an InvalidCastException is thrown with cause: 

Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Elements.CMaps.ToUnicodeCMap'.
Completed
Last Updated: 21 Aug 2020 07:34 by ADMIN
Release R3 2020
Currently this exception crashes the whole PDF document import. Instead we should simply skip the unsupported Action and import the rest of the PDF content correctly.