Unplanned
Last Updated: 08 Nov 2024 13:06 by ADMIN
When a Form with AlphaConstant and/or StrokeConstant contains a Path, alpha is applied to Form and Path, leading to a wrong transparency.
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: 07 Nov 2024 11:53 by ADMIN
When measuring nested tables and the levels are more than 5 level, the export is very slow.
Unplanned
Last Updated: 07 Nov 2024 11:51 by ADMIN
Formula evaluation causes an endless loop when importing a specific file
Unplanned
Last Updated: 06 Nov 2024 07:41 by Mohammad
PdfFormatProvider: The rightmost content of an HTML table is slightly cropped after PDF export.
Unplanned
Last Updated: 05 Nov 2024 14:04 by Michael

ArgumentNullException is thrown when importing a document containing a rule with no set format.

Unplanned
Last Updated: 05 Nov 2024 12:58 by Alejandro
In Development
Last Updated: 04 Nov 2024 13:05 by ADMIN
Export to image is blocked when Export method is used instead of ExportAsync.
Unplanned
Last Updated: 30 Oct 2024 12:59 by Oliver
StackOverflowException is thrown when applying filter for SVG.
In Development
Last Updated: 29 Oct 2024 13:28 by ADMIN
While parsing the Post table of a specific font file on export an exception is thrown: InvalidOperationException: 'Position is out of range.'
In Development
Last Updated: 29 Oct 2024 11:07 by ADMIN
The Form object does not inherit the graphics state of the page
Unplanned
Last Updated: 18 Oct 2024 14:45 by Jose
ArgumentNullException when exporting a specific document with SVG image to PDF.
Unplanned
Last Updated: 17 Oct 2024 08:58 by Heather

PdfStreamWriter: "InvalidOperationException: 'isContentReleased'" is thrown when creating a multi-page document with an umlaut on the last page.

Workaround - Explicitly set the block font:
block.TextProperties.Font = FontsRepository.Courier;

In Development
Last Updated: 11 Oct 2024 13:34 by ADMIN
PdfProcessing: RTL (right-to-left) text is reversed when inserting it directly to a document
In Development
Last Updated: 10 Oct 2024 08:44 by ADMIN
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);
        }

In Development
Last Updated: 09 Oct 2024 08:42 by ADMIN
Usually, the object references are expected to be stored in the following format: "5 0 obj". However, if the format is "0000005 0 obj", the document can't be parsed successfully. As a result the document is not displayed in RadPdfViewer.
Unplanned
Last Updated: 08 Oct 2024 12:13 by Andre' Hazelwood

 Replace cannot match whole word with special characters (e.g. "#", "@", "&") at the start/end.

Workaround (RegEx):

editor.ReplaceText(new Regex($"(?<=\\s|^|[\\c_]){placeholder}(?=\\s|$|[\\c_])"),"new content");

 

In Development
Last Updated: 04 Oct 2024 06:59 by ADMIN
When exporting a document containing a table with no cells an exception is thrown: System.InvalidOperationException: 'Sequence contains no elements'
In Development
Last Updated: 30 Sep 2024 12:51 by ADMIN
Win32Exception is thrown during a long-running process importing many documents with images.
1 2 3 4 5 6