Package com.itextpdf.kernel.pdf
Interface IPdfPageExtraCopier
-
- All Known Subinterfaces:
IPdfPageFormCopier
- All Known Implementing Classes:
PdfPageFormCopier
public interface IPdfPageExtraCopierThis interface defines logic which can be used to perform a custom copying operation of aPdfPage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcopy(PdfPage fromPage, PdfPage toPage)Copies a page.
-
-
-
Method Detail
-
copy
void copy(PdfPage fromPage, PdfPage toPage)
Copies a page. The new page must already be created before calling this, either in a newPdfDocumentor in the samePdfDocumentas the old page.- Parameters:
fromPage- the source pagetoPage- the target page in a target document
-
-