|
iText 7 7.1.9 API
|
This class provides means to compare two PDF files both by content and visually and gives the report of their differences. More...
Classes |
|
| class | CompareResult |
| Class containing results of the comparison of two documents. More... |
|
| class | CompareToolExecutionException |
| class | ObjectPath |
| Class that helps to find two corresponding objects in the comparing documents and also keeps track of the already met in comparing process parent indirect objects. More... |
|
Public Member Functions |
|
| CompareTool () | |
| Creates an instance of the CompareTool. More... |
|
| virtual CompareTool.CompareResult | CompareByCatalog (PdfDocument outDocument, PdfDocument cmpDocument) |
| Compares two PDF documents by content starting from Catalog dictionary and then recursively comparing corresponding objects which are referenced from it. More... |
|
| virtual iText.Kernel.Utils.CompareTool | DisableCachedPagesComparison () |
| Disables the default logic of pages comparison. More... |
|
| virtual iText.Kernel.Utils.CompareTool | SetCompareByContentErrorsLimit (int compareByContentMaxErrorCount) |
| Sets the maximum errors count which will be returned as the result of the comparison. More... |
|
| virtual iText.Kernel.Utils.CompareTool | SetGenerateCompareByContentXmlReport (bool generateCompareByContentXmlReport) |
| Enables or disables the generation of the comparison report in the form of the xml document. More... |
|
| virtual void | SetEventCountingMetaInfo (IMetaInfo metaInfo) |
| Sets iText.Kernel.Counter.Event.IMetaInfo info that will be used for both read and written documents creation. More... |
|
| virtual iText.Kernel.Utils.CompareTool | EnableEncryptionCompare () |
| Enables the comparison of the encryption properties of the documents. More... |
|
| virtual ReaderProperties | GetOutReaderProperties () |
| Documents for comparison are opened in reader mode. More... |
|
| virtual ReaderProperties | GetCmpReaderProperties () |
| Documents for comparison are opened in reader mode. More... |
|
| virtual String | CompareVisually (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix) |
| Compares two documents visually. More... |
|
| virtual String | CompareVisually (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix, IDictionary< int, IList< Rectangle >> ignoredAreas) |
| Compares two documents visually. More... |
|
| virtual String | CompareByContent (String outPdf, String cmpPdf, String outPath) |
| Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. More... |
|
| virtual String | CompareByContent (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix) |
| Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. More... |
|
| virtual String | CompareByContent (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix, byte[] outPass, byte[] cmpPass) |
| This method overload is used to compare two encrypted PDF documents. More... |
|
| virtual String | CompareByContent (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix, IDictionary< int, IList< Rectangle >> ignoredAreas) |
| Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. More... |
|
| virtual String | CompareByContent (String outPdf, String cmpPdf, String outPath, String differenceImagePrefix, IDictionary< int, IList< Rectangle >> ignoredAreas, byte[] outPass, byte[] cmpPass) |
| This method overload is used to compare two encrypted PDF documents. More... |
|
| virtual bool | CompareDictionaries (PdfDictionary outDict, PdfDictionary cmpDict) |
| Simple method that compares two given PdfDictionaries by content. More... |
|
| virtual CompareTool.CompareResult | CompareDictionariesStructure (PdfDictionary outDict, PdfDictionary cmpDict) |
| Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents. More... |
|
| virtual CompareTool.CompareResult | CompareDictionariesStructure (PdfDictionary outDict, PdfDictionary cmpDict, ICollection< PdfName > excludedKeys) |
| Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents. More... |
|
| virtual bool | CompareStreams (PdfStream outStream, PdfStream cmpStream) |
| Simple method that compares two given PdfStreams by content. More... |
|
| virtual bool | CompareArrays (PdfArray outArray, PdfArray cmpArray) |
| Simple method that compares two given PdfArrays by content. More... |
|
| virtual bool | CompareNames (PdfName outName, PdfName cmpName) |
| Simple method that compares two given PdfNames. More... |
|
| virtual bool | CompareNumbers (PdfNumber outNumber, PdfNumber cmpNumber) |
| Simple method that compares two given PdfNumbers. More... |
|
| virtual bool | CompareStrings (PdfString outString, PdfString cmpString) |
| Simple method that compares two given PdfStrings. More... |
|
| virtual bool | CompareBooleans (PdfBoolean outBoolean, PdfBoolean cmpBoolean) |
| Simple method that compares two given PdfBooleans. More... |
|
| virtual String | CompareXmp (String outPdf, String cmpPdf) |
| Compares xmp metadata of the two given PDF documents. More... |
|
| virtual String | CompareXmp (String outPdf, String cmpPdf, bool ignoreDateAndProducerProperties) |
| Compares xmp metadata of the two given PDF documents. More... |
|
| virtual bool | CompareXmls (byte[] xml1, byte[] xml2) |
| Utility method that provides simple comparison of the two xml files stored in byte arrays. More... |
|
| virtual bool | CompareXmls (String outXmlFile, String cmpXmlFile) |
| Utility method that provides simple comparison of the two xml files. More... |
|
| virtual String | CompareDocumentInfo (String outPdf, String cmpPdf, byte[] outPass, byte[] cmpPass) |
| This method overload is used to compare two encrypted PDF documents. More... |
|
| virtual String | CompareDocumentInfo (String outPdf, String cmpPdf) |
| Compares document info dictionaries of two pdf documents. More... |
|
| virtual String | CompareLinkAnnotations (String outPdf, String cmpPdf) |
| Compares if two documents has identical link annotations on corresponding pages. More... |
|
| virtual String | CompareTagStructures (String outPdf, String cmpPdf) |
| Compares tag structures of the two PDF documents. More... |
|
This class provides means to compare two PDF files both by content and visually and gives the report of their differences.
This class provides means to compare two PDF files both by content and visually and gives the report of their differences.
For visual comparison it uses external tools: Ghostscript and ImageMagick, which should be installed on your machine. To allow CompareTool to use them, you need to pass either java properties or environment variables with names "gsExec" and "compareExec", which would contain the paths to the executables of correspondingly Ghostscript and ImageMagick tools.
CompareTool class was mainly designed for the testing purposes of iText in order to ensure that the same code produces the same PDF document. For this reason you will often encounter such parameter names as "outDoc" and "cmpDoc" which stand for output document and document-for-comparison. The first one is viewed as the current result, and the second one is referred as normal or ideal result. OutDoc is compared to the ideal cmpDoc. Therefore all reports of the comparison are in the form: "Expected ..., but was ...". This should be interpreted in the following way: "expected" part stands for the content of the cmpDoc and "but was" part stands for the content of the outDoc.
|
inline |
Creates an instance of the CompareTool.
|
inlinevirtual |
Simple method that compares two given PdfArrays by content.
Simple method that compares two given PdfArrays by content. This is "deep" comparing, which means that all nested objects are also compared by content.
| outArray | array to compare. |
| cmpArray | array to compare. |
|
inlinevirtual |
Simple method that compares two given PdfBooleans.
| outBoolean | boolean to compare. |
| cmpBoolean | boolean to compare. |
|
inlinevirtual |
Compares two PDF documents by content starting from Catalog dictionary and then recursively comparing corresponding objects which are referenced from it.
Compares two PDF documents by content starting from Catalog dictionary and then recursively comparing corresponding objects which are referenced from it. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
The main difference between this method and the CompareByContent(System.String, System.String, System.String, System.String) methods is the return value. This method returns a CompareResult class instance, which could be used in code, however compareByContent methods in case of the differences simply return String value, which could only be printed. Also, keep in mind that this method doesn't perform visual comparison of the documents.
For more explanations about what is outDoc and cmpDoc see last paragraph of the CompareTool class description.
| outDocument | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpDocument | the absolute path to the cmp-file, which is to be compared to output file. |
|
inlinevirtual |
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them.
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Unlike CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) this method performs content comparison page by page and doesn't compare the tag structure, acroforms and all other things that doesn't belong to specific pages.
When comparison by content is finished, if any differences were found, visual comparison is automatically started. For more info see CompareVisually(System.String, System.String, System.String, System.String). For this overload, differenceImagePrefix value is generated using diff_outPdfFileName_ format.
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
|
inlinevirtual |
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them.
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Unlike CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) this method performs content comparison page by page and doesn't compare the tag structure, acroforms and all other things that doesn't belong to specific pages.
When comparison by content is finished, if any differences were found, visual comparison is automatically started. For more info see CompareVisually(System.String, System.String, System.String, System.String).
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked visual differences if there is any; if it's set to null the prefix defaults to diff_outPdfFileName_ format. |
|
inlinevirtual |
This method overload is used to compare two encrypted PDF documents.
This method overload is used to compare two encrypted PDF documents. Document passwords are passed with outPass and cmpPass parameters.
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Unlike CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) this method performs content comparison page by page and doesn't compare the tag structure, acroforms and all other things that doesn't belong to specific pages.
When comparison by content is finished, if any differences were found, visual comparison is automatically started. For more info see CompareVisually(System.String, System.String, System.String, System.String).
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked visual differences if there is any; if it's set to null the prefix defaults to diff_outPdfFileName_ format. |
| outPass | password for the encrypted document specified by the outPdf absolute path. |
| cmpPass | password for the encrypted document specified by the cmpPdf absolute path. |
|
inlinevirtual |
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them.
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Unlike CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) this method performs content comparison page by page and doesn't compare the tag structure, acroforms and all other things that doesn't belong to specific pages.
When comparison by content is finished, if any differences were found, visual comparison is automatically started. For more info see CompareVisually(System.String, System.String, System.String, System.String, System.Collections.Generic.IDictionary
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked visual differences if there is any; if it's set to null the prefix defaults to diff_outPdfFileName_ format. |
| ignoredAreas | a map with one-based page numbers as keys and lists of ignored rectangles as values. |
|
inlinevirtual |
This method overload is used to compare two encrypted PDF documents.
This method overload is used to compare two encrypted PDF documents. Document passwords are passed with outPass and cmpPass parameters.
Compares two PDF documents by content starting from page dictionaries and then recursively comparing corresponding objects which are referenced from them. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Unlike CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) this method performs content comparison page by page and doesn't compare the tag structure, acroforms and all other things that doesn't belong to specific pages.
When comparison by content is finished, if any differences were found, visual comparison is automatically started. For more info see CompareVisually(System.String, System.String, System.String, System.String, System.Collections.Generic.IDictionary
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked visual differences if there is any; if it's set to null the prefix defaults to diff_outPdfFileName_ format. |
| ignoredAreas | a map with one-based page numbers as keys and lists of ignored rectangles as values. |
| outPass | password for the encrypted document specified by the outPdf absolute path. |
| cmpPass | password for the encrypted document specified by the cmpPdf absolute path. |
|
inlinevirtual |
Simple method that compares two given PdfDictionaries by content.
Simple method that compares two given PdfDictionaries by content. This is "deep" comparing, which means that all nested objects are also compared by content.
| outDict | dictionary to compare. |
| cmpDict | dictionary to compare. |
|
inlinevirtual |
Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents.
Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Both out and cmp iText.Kernel.Pdf.PdfDictionary shall have indirect references.
By default page dictionaries are excluded from the comparison when met and are instead compared in a special manner, simply comparing their page numbers. This behavior can be disabled by calling DisableCachedPagesComparison().
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outDict | an indirect iText.Kernel.Pdf.PdfDictionary from the output file, which is to be compared to cmp-file dictionary. |
| cmpDict | an indirect iText.Kernel.Pdf.PdfDictionary from the cmp-file file, which is to be compared to output file dictionary. |
CompareResult instance containing differences between the two dictionaries, or null if dictionaries are equal.
|
inlinevirtual |
Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents.
Recursively compares structures of two corresponding dictionaries from out and cmp PDF documents. You can roughly imagine it as depth-first traversal of the two trees that represent pdf objects structure of the documents.
Both out and cmp iText.Kernel.Pdf.PdfDictionary shall have indirect references.
By default page dictionaries are excluded from the comparison when met and are instead compared in a special manner, simply comparing their page numbers. This behavior can be disabled by calling DisableCachedPagesComparison().
For more explanations about what is outPdf and cmpPdf see last paragraph of the CompareTool class description.
| outDict | an indirect iText.Kernel.Pdf.PdfDictionary from the output file, which is to be compared to cmp-file dictionary. |
| cmpDict | an indirect iText.Kernel.Pdf.PdfDictionary from the cmp-file file, which is to be compared to output file dictionary. |
| excludedKeys | a Java.Util.Set |
CompareResult instance containing differences between the two dictionaries, or null if dictionaries are equal.
|
inlinevirtual |
Compares document info dictionaries of two pdf documents.
| outPdf | the absolute path to the output file, which info is to be compared to cmp-file info. |
| cmpPdf | the absolute path to the cmp-file, which info is to be compared to output file info. |
|
inlinevirtual |
This method overload is used to compare two encrypted PDF documents.
This method overload is used to compare two encrypted PDF documents. Document passwords are passed with outPass and cmpPass parameters.
Compares document info dictionaries of two pdf documents.
| outPdf | the absolute path to the output file, which info is to be compared to cmp-file info. |
| cmpPdf | the absolute path to the cmp-file, which info is to be compared to output file info. |
| outPass | password for the encrypted document specified by the outPdf absolute path. |
| cmpPass | password for the encrypted document specified by the cmpPdf absolute path. |
|
inlinevirtual |
Compares if two documents has identical link annotations on corresponding pages.
| outPdf | the absolute path to the output file, which links are to be compared to cmp-file links. |
| cmpPdf | the absolute path to the cmp-file, which links are to be compared to output file links. |
|
inlinevirtual |
Simple method that compares two given PdfNames.
| outName | name to compare. |
| cmpName | name to compare. |
|
inlinevirtual |
Simple method that compares two given PdfNumbers.
| outNumber | number to compare. |
| cmpNumber | number to compare. |
|
inlinevirtual |
Simple method that compares two given PdfStreams by content.
Simple method that compares two given PdfStreams by content. This is "deep" comparing, which means that all nested objects are also compared by content.
| outStream | stream to compare. |
| cmpStream | stream to compare. |
|
inlinevirtual |
Simple method that compares two given PdfStrings.
| outString | string to compare. |
| cmpString | string to compare. |
|
inlinevirtual |
Compares tag structures of the two PDF documents.
Compares tag structures of the two PDF documents.
This method creates xml files in the same folder with outPdf file. These xml files contain documents tag structures converted into the xml structure. These xml files are compared if they are equal.
| outPdf | the absolute path to the output file, which tags are to be compared to cmp-file tags. |
| cmpPdf | the absolute path to the cmp-file, which tags are to be compared to output file tags. |
|
inlinevirtual |
Compares two documents visually.
Compares two documents visually. For the comparison two external tools are used: Ghostscript and ImageMagick. For more info about needed configuration for visual comparison process see CompareTool class description.
During comparison for every page of two documents an image file will be created in the folder specified by outPath absolute path. Then those page images will be compared and if there are any differences for some pages, another image file will be created with marked differences on it.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked differences if there is any. |
|
inlinevirtual |
Compares two documents visually.
Compares two documents visually. For the comparison two external tools are used: Ghostscript and ImageMagick. For more info about needed configuration for visual comparison process see CompareTool class description.
During comparison for every page of two documents an image file will be created in the folder specified by outPath absolute path. Then those page images will be compared and if there are any differences for some pages, another image file will be created with marked differences on it.
It is possible to ignore certain areas of the document pages during visual comparison. This is useful for example in case if documents should be the same except certain page area with date on it. In this case, in the folder specified by the outPath, new pdf documents will be created with the black rectangles at the specified ignored areas, and visual comparison will be performed on these new documents.
| outPdf | the absolute path to the output file, which is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which is to be compared to output file. |
| outPath | the absolute path to the folder, which will be used to store image files for visual comparison. |
| differenceImagePrefix | file name prefix for image files with marked differences if there is any. |
| ignoredAreas | a map with one-based page numbers as keys and lists of ignored rectangles as values. |
|
inlinevirtual |
Utility method that provides simple comparison of the two xml files stored in byte arrays.
| xml1 | first xml file data to compare. |
| xml2 | second xml file data to compare. |
|
inlinevirtual |
Utility method that provides simple comparison of the two xml files.
| outXmlFile | absolute path to the out xml file to compare. |
| cmpXmlFile | absolute path to the cmp xml file to compare. |
|
inlinevirtual |
Compares xmp metadata of the two given PDF documents.
| outPdf | the absolute path to the output file, which xmp is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which xmp is to be compared to output file. |
|
inlinevirtual |
Compares xmp metadata of the two given PDF documents.
| outPdf | the absolute path to the output file, which xmp is to be compared to cmp-file. |
| cmpPdf | the absolute path to the cmp-file, which xmp is to be compared to output file. |
| ignoreDateAndProducerProperties | true, if to ignore differences in date or producer xmp metadata properties. |
|
inlinevirtual |
Disables the default logic of pages comparison.
Disables the default logic of pages comparison. This option makes sense only for CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) method.
By default, pages are treated as special objects and if they are met in the process of comparison, then they are not checked as objects, but rather simply checked that they has same page numbers in both documents. This behaviour is intended for the CompareByContent(System.String, System.String, System.String) set of methods, because in them documents are compared in page by page basis. Thus, we don't need to check if pages are of the same content when they are met in comparison process, we are sure that we will compare their content or we have already compared them.
However, if you would use CompareByCatalog(iText.Kernel.Pdf.PdfDocument, iText.Kernel.Pdf.PdfDocument) with default behaviour of pages comparison, pages won't be checked at all, every time when reference to the page dictionary is met, only page numbers will be compared for both documents. You can say that in this case, comparison will be performed for all document's catalog entries except /Pages (However in fact, document's page tree structures will be compared, but pages themselves - won't).
|
inlinevirtual |
Enables the comparison of the encryption properties of the documents.
Enables the comparison of the encryption properties of the documents. Encryption properties comparison results are returned along with all other comparison results.
IMPORTANT NOTE: this flag affect only the comparison made by compareByContent methods!
|
inlinevirtual |
Documents for comparison are opened in reader mode.
Documents for comparison are opened in reader mode. This method is intended to alter iText.Kernel.Pdf.ReaderProperties which are used to open cmp document. This is particularly useful for comparison of encrypted documents.
For more explanations about what is outDoc and cmpDoc see last paragraph of the CompareTool class description.
iText.Kernel.Pdf.ReaderProperties instance which will be later passed to the cmp document iText.Kernel.Pdf.PdfReader.
|
inlinevirtual |
Documents for comparison are opened in reader mode.
Documents for comparison are opened in reader mode. This method is intended to alter iText.Kernel.Pdf.ReaderProperties which are used to open output document. This is particularly useful for comparison of encrypted documents.
For more explanations about what is outDoc and cmpDoc see last paragraph of the CompareTool class description.
iText.Kernel.Pdf.ReaderProperties instance which will be later passed to the output document iText.Kernel.Pdf.PdfReader.
|
inlinevirtual |
Sets the maximum errors count which will be returned as the result of the comparison.
| compareByContentMaxErrorCount | the errors count. |
|
inlinevirtual |
Sets iText.Kernel.Counter.Event.IMetaInfo info that will be used for both read and written documents creation.
| metaInfo | meta info to set |
|
inlinevirtual |
Enables or disables the generation of the comparison report in the form of the xml document.
Enables or disables the generation of the comparison report in the form of the xml document.
IMPORTANT NOTE: this flag affect only the comparison made by compareByContent methods!
| generateCompareByContentXmlReport | true to enable xml report generation, false - to disable. |