Unplanned
Last Updated: 21 Feb 2025 10:59 by Gal
Incorrect positioning of Right-to-left (RTL) numbers.
Unplanned
Last Updated: 21 Feb 2025 10:13 by Gal
Mangled Right-To-Left (RTL) content when multiple lines of text are drawn.
Need More Info
Last Updated: 19 Feb 2025 14:51 by ADMIN
Created by: Jörg
Comments: 3
Category: Telerik Document Processing
Type: Bug Report
1

We use the PDF viewer in an WPF project and see sometimes faulty pdfs in the telerik viewer. If I open the pdf file in acrobat it lloks fine. Do you know this problem ?

Attached you find the original file and a screenshot from PDF viewer. Other files are shown correct in the telerik viewer.

In Development
Last Updated: 18 Feb 2025 13:16 by ADMIN
Wrong font loading when FontFile2 is CFF (Compact Font Format).
Completed
Last Updated: 18 Feb 2025 09:29 by ADMIN
Release 2025.1.205 (2025 Q1)
ADMIN
Created by: Deyan
Comments: 1
Category: PdfProcessing
Type: Feature Request
27
This property should work similar to PreferredWidth cell property but in vertical direction.
Completed
Last Updated: 18 Feb 2025 09:09 by ADMIN
Release 2025.1.205 (2025 Q1)
Implement support for adding barcodes to a PDF document.
Unplanned
Last Updated: 18 Feb 2025 08:22 by Vitalii
Unplanned
Last Updated: 17 Feb 2025 15:34 by Sandy
In Development
Last Updated: 17 Feb 2025 07:50 by ADMIN
InvalidDataException: 'Unknown compression method (0x3C)' when importing a file with XRef table defined in an object with FlateDecode filter.
Completed
Last Updated: 17 Feb 2025 05:24 by ADMIN
Release 2025.1.205 (2025 Q1)
Optical character recognition or optical character reader (OCR) is the electronic or mechanical conversion of images of typed, handwritten, or printed text into a machine-encoded text from a scanned document.
Unplanned
Last Updated: 14 Feb 2025 13:26 by Vitalii
IndexOutOfRangeException is thrown due to wrongly processed image data.
Unplanned
Last Updated: 14 Feb 2025 13:05 by Sandy

Corrupted document when exporting "Courier New" subset.

Workaround - fully embed the font:

var pdfFormatProvider = new PdfFormatProvider();
pdfFormatProvider.ExportSettings.FontEmbeddingType = FontEmbeddingType.Full;

 

Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
Created by: Rob
Comments: 2
Category: PdfProcessing
Type: Feature Request
2
Add support for Named Actions.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
NullReferenceException has thrown when importing a form XObject with null Resources in PDF dictionary.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
ArgumentNullException is thrown when importing a document with missing indirect reference object.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
"An error exists on this page. Acrobat may not display the page correctly." error in Adobe when inspecting a page with DeviceGray ColorSpace image after import-export.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
ADMIN
Created by: Martin
Comments: 5
Category: PdfProcessing
Type: Feature Request
1

RadPdfProcessing currently supports interactive forms whose data is defined directly in the document. To preserve them when importing and exporting documents, add support for import-export interactive forms based on the Adobe XML Forms Architecture (XFA).

From PDF 2.0 the XFA forms are depreciated.

Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)
Created by: Rob
Comments: 0
Category: PdfProcessing
Type: Bug Report
1
PDF document Import-Export inverts images.
Completed
Last Updated: 12 Feb 2025 15:21 by ADMIN
Release 2025.1.205 (2025 Q1)

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

 

1 2 3 4 5 6