Declined
Last Updated: 05 Mar 2021 08:49 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 0
Category: PdfProcessing
Type: Feature Request
1

The common annotation properties are described in table "Entries common to all annotation dictionaries" of the Pdf specification.

Declined: Handling a partial annotation import-export could lead to exporting invalid PDF documents.

Completed
Last Updated: 05 Mar 2021 14:07 by ADMIN
Release R2 2021

When exporting a document referencing PdfProcessing`s .NET Standard assemblies with PdfComplianceLevel set an exception is thrown.

Duplicated
Last Updated: 08 Jun 2022 06:43 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 0
Category: PdfProcessing
Type: Feature Request
10
A rubber stamp annotation displays text or graphics intended to look as if they were stamped on the page with a rubber stamp. When opened, it displays a pop-up window containing the text of the associated note.
Unplanned
Last Updated: 31 Jan 2024 08:20 by ADMIN
Created by: Petar
Comments: 0
Category: PdfProcessing
Type: Bug Report
0
Fields are no longer highlighted after import. 
Unplanned
Last Updated: 25 Feb 2021 08:22 by ADMIN
When drawing text block content of a TextBoxFields the text is visualized with the wrong text due to a missing font`s fallback mechanism.
Unplanned
Last Updated: 19 Feb 2021 08:24 by ADMIN
Created by: Greg Lesniakiewicz
Comments: 4
Category: PdfProcessing
Type: Feature Request
2
This functionality is currently not supported both with the FixedContentEditor and RadFixedDocumentEditor.
Unplanned
Last Updated: 17 Feb 2021 15:06 by ADMIN
Currently, there is such an option using the FixedContentEditor`s DrawWidget() method.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
Created by: Greg Lesniakiewicz
Comments: 2
Category: PdfProcessing
Type: Feature Request
21
Enable the customers to work with annotations of type Stamp
Unplanned
Last Updated: 04 Feb 2021 11:39 by ADMIN
Created by: Thomas
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
Currently, the UseCmap operator is not supported and when trying to import a document using such Cmap an exception is thrown: System.InvalidOperationException: 'Empty CodeSpaceRanges collection.'
Completed
Last Updated: 13 Nov 2024 08:50 by ADMIN
Release 2024.4.1106 (Q4 2024)
PdfProcessing: RTL (right-to-left) text is reversed when inserting it directly to a document
Completed
Last Updated: 09 Feb 2021 16:17 by ADMIN
Release R1 2021 SP1

A Link annotation must have an associated action, destination, or named destination specifying what should happen when the annotation is activated. When merging documents with invalid Link annotations, an ArgumentException is thrown with the message 'Value cannot be null. Parameter name: namedDestination'

Workaround: Remove the invalid annotations:

foreach (var annotation in document.Annotations.ToList())
{
    var link = annotation as Link;
    if (link != null && link.Action == null && link.Destination == null && link.NamedDestination == null)
    {
        (annotation.Parent as RadFixedPage).Annotations.Remove(annotation);
    }
}

Completed
Last Updated: 10 Feb 2021 08:30 by ADMIN
Release R1 2021 SP1
The standard fonts do not respect font style and weight
Declined
Last Updated: 09 Dec 2021 07:26 by ADMIN

I have read that there limitations to PDF files being imported, however, the file being imported  was generated with FixedContentEditor, so, should be able to import?

  using (Stream stream = Stream)
        {
          try
          {
            this._document = provider.Import(stream);
            _InputPath = fileName;
          }
          catch (Exception e)
          {
            Errors = "Could not open file " + fileName + ": " + e.Message;
            this._document = null;
          }
        }
      }
Completed
Last Updated: 09 Feb 2023 07:41 by ADMIN
Release R1 2023 SP1
The images inside form sources are not correctly positioned and might be invisible.

This issue is regression it works with R2 2020.
Completed
Last Updated: 28 Jan 2021 10:16 by ADMIN
Release R1 2021 SP1
The exception is thrown when the endObj keyword is present without preceding obj to define the start and the reference of the current object. 
Completed
Last Updated: 22 Jun 2021 07:44 by ADMIN
Release R2 2021 SP1

By specification, the last line of the file contains only the end-of-file marker, %%EOF. If the file contains many trailing bytes at its end, a NotSupportedException: 'StartXRef keyword cannot be found.', is thrown.

Workaround: Trim any content after the end-of-file marker (see FixInvalidEndOfFile). 

Completed
Last Updated: 10 Feb 2021 10:54 by ADMIN
Release R1 2021 SP1
Currently, importing a document with non-embedded TrueType font will result in a font instance with an empty font source. Support should be added for providing custom font data of TrueType fonts during document import.
Unplanned
Last Updated: 08 Jan 2021 11:02 by ADMIN
Created by: Dimitar
Comments: 0
Category: PdfProcessing
Type: Feature Request
3
Add support for the PAdES-BES signature standard
Duplicated
Last Updated: 07 Jan 2021 08:07 by ADMIN
Hi, i want to export a pdf with the options to disable all permissions except printing, thank you.
Unplanned
Last Updated: 22 Dec 2020 10:49 by ADMIN

When merging documents` pages using the PdfStreamWriter the Form Fields are not copied:

using (PdfStreamWriter fileWriter = new PdfStreamWriter(File.OpenWrite(document2Name)))
{
	// Iterate through the files you would like to merge 
	for (int i = 0; i < 2; i++)
	{
		// Open each of the files 
		using (PdfFileSource fileToMerge = new PdfFileSource(File.OpenRead(document1Name)))
		{
			// Iterate through the pages of the current document 
			foreach (PdfPageSource pageToMerge in fileToMerge.Pages)
			{
				// Append the current page to the fileWriter, which holds the stream of the result file 
				fileWriter.WritePage(pageToMerge);
			}
		}
	}
}

A possible workaround is to use the RadFixedDocument`s Merge() method: 

document1.Merge(document2);