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.
Completed
Last Updated: 07 Sep 2023 13:17 by ADMIN
Release R3 2023
An exception is thrown when exporting an encoded document containing an image with Index ColorSpace.
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: 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);
        }

Unplanned
Last Updated: 13 Oct 2023 06:48 by ADMIN
In Word when adding a right adjustment tabulator, tabbing after the tab stop distance does not respect the tabs afterward in Pdf.
Unplanned
Last Updated: 17 May 2023 10:31 by James
Widget font size is being set in Points by default instead of Dips.
Completed
Last Updated: 29 May 2023 12:40 by ADMIN
Release R2 2023

IOException when an object in the cross-reference stream has a negative offset.

"System.IO.IOException: An attempt was made to move the file pointer before the beginning of the file."

Completed
Last Updated: 06 Jul 2023 07:54 by ADMIN
Release R2 2023 SP1

InvalidCastException is thrown when a name start character is followed by a literal string start character.

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

Unplanned
Last Updated: 10 May 2023 08:09 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: PdfProcessing
Type: Feature Request
0
Add support for GoToE action
Completed
Last Updated: 10 May 2023 14:54 by ADMIN
Release R3 2023
When a document contains an ICCBased ColorSpace and a Shadings Pattern the import of the document could be very slow.
Completed
Last Updated: 04 May 2023 09:22 by ADMIN
Release R2 2023
The image matrix is wrongly exported, leading to inconsistency with the original one.
Completed
Last Updated: 24 Apr 2023 13:27 by ADMIN
Release R2 2023
The CalGray color space properties are not correctly exported in an array.
Unplanned
Last Updated: 19 Apr 2023 11:04 by Martin
With the current implementation, the documents containing Standard Fonts are not PDF/A compliant (check How to Comply with PDF/A Standard).
Completed
Last Updated: 17 May 2023 06:41 by ADMIN
Release R2 2023
Completed
Last Updated: 20 Apr 2023 13:49 by ADMIN
Release R2 2023
Errors when validating signed pdf files with VeraPdf and 3-Heights(TM) PDF validators
Unplanned
Last Updated: 12 Apr 2023 16:17 by George
Created by: George
Comments: 0
Category: PdfProcessing
Type: Feature Request
0

Hi there,

I've been researching how to use Telerik PDFProcessing to Digitally Sign a PDF. But can't find any documentation on how to incorporate it into ASP.Net AJAX (VB).


Can you please point me in the direction of where to look, or if you have a sample application that would be very helpful.

Essentially, I'm just trying to digitally sign the PDF document that I've exported with the embedded signature panel with a PKF file.
Completed
Last Updated: 04 Jul 2023 07:11 by ADMIN
Release R2 2023 SP1
IndexOutOfRangeException thrown when executing CalculateMultidimensionalLinearInterpolationResult method of SampledFunction class.
Unplanned
Last Updated: 06 Apr 2023 19:10 by Lee
Created by: Lee
Comments: 0
Category: PdfProcessing
Type: Feature Request
2
Provide API for inserting Watermarks that depend on Optional Content / PDF Layers (Not to be confused with Watermark Annotations).
Completed
Last Updated: 07 Apr 2023 05:20 by ADMIN
Release R2 2023

When the indirect object contains more spaces between the object number and the generation number the object content is not successfully parsed.

Expected: one space

Actual: more than one space

Completed
Last Updated: 11 May 2023 11:51 by ADMIN
Release R2 2023

When using an ImageSharp version bigger than 2.0 an exception is thrown: "MissingMethodException: 'Method not found: 'SixLabors.ImageSharp.Image SixLabors.ImageSharp.Image.Load(Byte[], SixLabors.ImageSharp.Formats.IImageFormat ByRef)'."

Workaround: Downgrade to a lower ImageSharp version or use a custom implementation of ImagePropertiesResolverBase/JpegImageConverter.