Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
Created by: Ali
Comments: 0
Category: PdfProcessing
Type: Bug Report
1

When inserting ligature languages text into a block, the text doesn't appear on the generated PDF file.

With the following sample code, the issue can be reproduced:

private static string fileName = "Hello.pdf";
        static void Main(string[] args)
        {
            byte[] fontData = File.ReadAllBytes("calibri.ttf");
            FontFamily fontFamily = new FontFamily("Calibri");
            FontsRepository.RegisterFont(fontFamily, FontStyles.Normal, FontWeights.Normal, fontData);

            RadFixedDocument document = new RadFixedDocument();
            RadFixedPage page = new RadFixedPage();

            string text = "مرحبا";
            var reversedText = text.ToCharArray();
            Array.Reverse(reversedText);
            Block block = new Block();
            block.InsertText(new FontFamily("Calibri"), new string(reversedText));

            FixedContentEditor editor = new FixedContentEditor(page);
            editor.DrawBlock(block);
            document.Pages.Add(page);

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

            ProcessStartInfo psi = new ProcessStartInfo();
            psi.FileName = fileName;
            Process.Start(fileName);
        }

Completed
Last Updated: 29 Jun 2023 06:01 by ADMIN
Release R2 2023 SP1
Invalid position when the TJ operator array contains empty values (<>).
Completed
Last Updated: 05 Jul 2023 10:50 by ADMIN
Release R2 2023 SP1
With the current implementation, the optional Filter property is omitted on export.
Unplanned
Last Updated: 07 Jun 2023 13:40 by Alon Rosenberg
InvalidDataException: 'Unknown compression method (0x3C)' when importing a file with XRef table defined in an object with FlateDecode filter.
Unplanned
Last Updated: 19 Jun 2023 13:29 by Alon Rosenberg
Export of a document with Type 1 font and custom encoding results in content loss.
Unplanned
Last Updated: 27 Jul 2023 06:00 by Helen
 Specific text is not found in the document when using the TextSearch
Unplanned
Last Updated: 23 Aug 2023 15:02 by Stefan

Some documents loaded through WordsProcessing and then exported to a RadFixedDocument by utilizing the ExportToFixedDocument() method, fails on export through ImageFormatProvider with System.AggregateException.

As a workaround, you can export the RadFixedDocument to a PDF and then import it again before exporting it to an image.

var pdfFixedProvider = new Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.PdfFormatProvider();
bytes = pdfFixedProvider.Export(fixedDocument);
fixedDocument = pdfFixedProvider.Import(bytes);

 

Unplanned
Last Updated: 13 Sep 2023 08:31 by Jon
Enabling FIPS causes all signatures to be displayed as invalid or unknown. In addition, some signatures are displayed as unknown but Adobe verifies them.
Unplanned
Last Updated: 07 Nov 2024 15:24 by ADMIN
InvalidCastException: 'Unable to cast object of type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfArray' to type 'Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Model.Types.PdfName'.'
when parsing a specific document.
Unplanned
Last Updated: 16 Nov 2023 10:52 by ADMIN

When loading a PDF generated with PdfProcessing in PDF Accessibility Checker 2021 (PAC) an exception is thrown: "Object reference not set to an instance of an object".

It is reproducible with all PdfComplianceLevel export options.

Completed
Last Updated: 11 Dec 2023 07:41 by ADMIN
Release R3 2023 SP1
Endless loop when trying to parse image data between ID and EI keywords.
Unplanned
Last Updated: 24 Oct 2023 12:08 by Paito
Signature omitted after exporting PDF to an image.   
Unplanned
Last Updated: 20 Nov 2023 14:32 by Rob
Allow authentication of documents with OwnerPassword. The user can use the OwnerPassword instead of the UserPassword to open the file.
Unplanned
Last Updated: 20 Nov 2023 14:41 by Rob
Created by: Rob
Comments: 0
Category: PdfProcessing
Type: Bug Report
1
PDF document Import-Export inverts images.
Unplanned
Last Updated: 23 Nov 2023 14:24 by ADMIN
Introduce API for setting the 'Application' property of a document.
Completed
Last Updated: 11 Jan 2024 08:23 by ADMIN
Release 2024 Q1
Import-export mangles text with a specific document.
Completed
Last Updated: 15 May 2024 06:29 by ADMIN
Release 2024.2.426 (2024 Q2)
Import-export causes missing characters with a specific document.
Completed
Last Updated: 11 Jan 2024 08:23 by ADMIN
Release 2024 Q1
Created by: laura
Comments: 0
Category: PdfProcessing
Type: Feature Request
1
Expose the IsBold property of FontBase.
Completed
Last Updated: 13 Nov 2024 08:51 by ADMIN
Release 2024.4.1106 (Q4 2024)
Created by: M4
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

Introduce API for setting Image opacity.

The attached Workaround demonstrates how to change the opacity of the image before inserting it into the document.

Completed
Last Updated: 15 Jan 2024 07:50 by ADMIN
Release 2024 Q1