Package com.itextpdf.kernel.pdf
Interface IPdfPageExtraCopier
-
- All Known Subinterfaces:
IPdfPageFormCopier
- All Known Implementing Classes:
PdfPageFormCopier
public interface IPdfPageExtraCopier
This 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 void
copy(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 newPdfDocument
or in the samePdfDocument
as the old page.- Parameters:
fromPage
- the source pagetoPage
- the target page in a target document
-
-