PDFDocAppendVisualDiff Method |
Generates a PDF diff of the given pages by overlaying and blending them on top of each other,
then appends that diff as a new page in this document.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AppendVisualDiff(
Page pageA,
Page pageB,
DiffOptions options
)
Public Sub AppendVisualDiff (
pageA As Page,
pageB As Page,
options As DiffOptions
)
public:
virtual void AppendVisualDiff(
[InAttribute] Page^ pageA,
[InAttribute] Page^ pageB,
[InAttribute] DiffOptions^ options
) sealed
function AppendVisualDiff(pageA, pageB, options);
Parameters
- pageA
- Type: pdftron.PDFPage
The first page to compare. Must be from another document. - pageB
- Type: pdftron.PDFPage
The second page to compare. Must be from another document. - options
- Type: pdftron.PDFDiffOptions
The options to use when comparing the page.
See Also