GraphicalPdfComparer.ComparePagesToPdf
ComparePagesToPdf(Page, Page, string)
Compares pages graphically. The comparison result is placed in a PDF document.
public void ComparePagesToPdf(Page page1, Page page2, string resultPdfPath)
| Parameter | Type | Description | 
|---|
| page1 | Page | The first page. | 
| page2 | Page | The second page. | 
| resultPdfPath | String | The path to target pdf file. | 
Exceptions
| exception | condition | 
|---|
| ArgumentException | If the pages being compared are of different sizes. If resultPdfPath is null or empty string. | 
See Also
ComparePagesToPdf(Page, Page, Document)
Compares pages graphically. The comparison result is placed in a PDF document.
public void ComparePagesToPdf(Page page1, Page page2, Document pdfDocument)
| Parameter | Type | Description | 
|---|
| page1 | Page | The first page. | 
| page2 | Page | The second page. | 
| pdfDocument | Document | The pdf document instance. | 
Exceptions
| exception | condition | 
|---|
| ArgumentException | If the pages being compared are of different sizes. | 
See Also