PdfDocument.ReplaceDuplicateObjects Method

Replaces duplicate document objects with the first duplicate.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void ReplaceDuplicateObjects()
VB
Public Sub ReplaceDuplicateObjects

Remarks

This method finds all groups of object duplicates and replaces all objects from each group of duplicates with the first item of the group.

This method replaces duplicates of all supported kinds. The kinds are mentioned in PdfDuplicateObjectKinds.

This method gives good results for documents which were incrementally updated or created by a merge of several documents with the same objects.

To actually reduce output file size, this method requires removal of unused objects afterwards. Please set RemoveUnusedObjects property to true when using this method.

To be able to replace duplicate inline images too, use one of the MoveInlineImagesToResources() methods before calling any of the ReplaceDuplicateObjects() methods.

See Also