Unplanned
Last Updated: 09 Feb 2023 07:59 by ADMIN

For example, when some PDF file has uncompressed contents we may import it and apply better compression to the stream objects. Ensure that all the content inside the document is compressed.

Currently, we have the following options for PDF export optimizations:

Unplanned
Last Updated: 12 Apr 2021 09:10 by ADMIN
Currently, this missing functionality may be workaround by either drawing the headers and footers with FixedContentEditor or by using RadWordsProcessing PDF export.
Unplanned
Last Updated: 20 Dec 2023 06:08 by ADMIN
ADMIN
Created by: Deyan
Comments: 1
Category: PdfProcessing
Type: Feature Request
34
You can convert the document to PDF and use the approach bellow:

Currently, silent async printing may be achieved by using RadPdfViewer WPF control. Sample demo showing how to achieve this may be seen at the following forum post:
http://www.telerik.com/forums/pdfviewer-print-makes-ui-unresponsive#js0YdzFWc0Oa8C3g6a18lg

The RadPdfViewer WPF control used does not need to be displayed, making this demo a good workaround for ASP.NET AJAX clients.
Unplanned
Last Updated: 21 Oct 2024 14:12 by ADMIN
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: 12 Jan 2017 16:34 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
29

			
Unplanned
Last Updated: 06 Mar 2019 17:39 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
29
Implement functionality allowing to specify that when a table is split on multiple pages, a specific row should be shown on each page.

Workaround: in the attached demo projects.
Unplanned
Last Updated: 12 Jan 2017 16:18 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
26
This property should work similar to PreferredWidth cell property but in vertical direction.
Unplanned
Last Updated: 17 Jan 2023 07:19 by ADMIN
Created by: Lazar
Comments: 6
Category: PdfProcessing
Type: Feature Request
26
Implement functionality to support scenario when a document which already has a signature to be signed again or add two or more signatures.
Unplanned
Last Updated: 25 Aug 2022 11:47 by ADMIN

PDF/A-1a is with conformance level A (for "accessibility"), and must adhere to all of the requirements of the PDF Reference as modified by the ISO 19005 specification. It requires structural and semantic properties to be preserved. Level 1a uses “Tagged PDF” and Unicode character maps to preserve the document's logical structure and content text stream in natural reading order. The following features are used: - Language specification - Hierarchical document structure - Tagged text spans and descriptive text for images and symbols - Character mappings to Unicode The purpose is to improve accessibility and make the content accessible for screen readers.

The currently supported compliance levels can be found in the How to Comply with PDF/A Standard article.

Unplanned
Last Updated: 03 Dec 2018 06:18 by ADMIN
ADMIN
Created by: Deyan
Comments: 7
Category: PdfProcessing
Type: Feature Request
21
Support conversion of XPS documents to PDF using RadPdfProcessing.
Unplanned
Last Updated: 06 Mar 2019 15:04 by John Paul
ADMIN
Created by: Deyan
Comments: 5
Category: PdfProcessing
Type: Feature Request
20

Currently, similar scenario may be achieved by converting Tiff images to BitmapSource and inserting them to RadFixedPage as images by using FixedContentEditor.

Note: A sample approach how to achieve such functionality is demonstrated in the Converting Multi-page TIFF Images to PDF KB article.

Unplanned
Last Updated: 08 Oct 2024 12:43 by ADMIN
ADMIN
Created by: Deyan
Comments: 16
Category: PdfProcessing
Type: Feature Request
19
To bring RadPDFProcessing to the next level you should support XMP metadata. This would extremely help to use pdf files from RadPDFProcessing in digital workflows.

Reference: http://www.adobe.com/devnet/xmp.html
Unplanned
Last Updated: 28 May 2021 15:26 by ADMIN
Created by: ANTONIO
Comments: 2
Category: PdfProcessing
Type: Feature Request
18
Add a PDF document validator to validate (before the import of the document) an existing PDF document.
Unplanned
Last Updated: 06 Dec 2023 13:32 by ADMIN
Currently, PdfStreamWriter writes only PDF pages.

If we implement API for merging multiple pages or whole documents we would be able to preserve links between pages (which are currently being corrupted).

Merging whole documents would also allow preserving document properties (bookmarks, interactive forms, ...). For a more detailed list of the unsupported document properties you can refer to our documentation: https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/formats-and-conversion/pdf/pdfstreamwriter/features.

We may also implement API for adding initial document properties from some existing PDF file.
Unplanned
Last Updated: 24 Aug 2018 12:38 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
15
Add ability to create, import and modify layers (optional content) in a PDF document.
Unplanned
Last Updated: 31 Aug 2022 11:23 by ADMIN
ADMIN
Created by: Boby
Comments: 4
Category: PdfProcessing
Type: Feature Request
13
Currently RadFixedDocumentInfo is used only for export of Author, Title and Description document metadata properties. This should be extended to support custom properties. We should also implement the import of RadFixedDocumentInfo.
Unplanned
Last Updated: 22 Jul 2021 11:15 by ADMIN
Support for validating signature fields signed with signatures that are encoded in ETSI.CAdES.detached encoding should be added.
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();
       }
    }
}

Unplanned
Last Updated: 08 Jan 2021 08:19 by ADMIN

When merging documents containing the same embedded font every time a document is merged the same font is repeatedly embedded in the merged document. This leads to very large files.

A possible workaround before this feature is developed could be to use the PdfProcessing model to import and merge the documents. After the documents are merged to iterate the document`s content in order to cache the fonts using their name and if there are duplicated names to set the already cached one (check the attached project). 

As a side note, the suggested workaround doesn't cover all possible cases (e.g. if there are fonts with a common name but different font sets (modified fonts or font subsets) this may lead to missing/different characters in the produced document). So in order to use this workaround, you will need to ensure the font names are unique for every different font.

Unplanned
Last Updated: 13 Jan 2017 14:15 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PdfProcessing
Type: Feature Request
9

This missing functionality may be workaround by implementing and registering custom IPdfFilter implementation that decodes JPEG2000 images. The custom decoder may be registered with FiltersManager class and its implementation may be similar to RadPdfViewers JpxDecoder SDK example implementation: - https://github.com/telerik/xaml-sdk/blob/master/PdfViewer/CustomDecoder/JpxDecoder.cs

- Use a custom JPXDecode filter with RadPdfViewer

1 2 3 4 5 6