Package com.itextpdf.kernel.pdf
Interface IPdfPageFactory
-
- All Known Implementing Classes:
PdfAPageFactory
,PdfPageFactory
,PdfUAPageFactory
public interface IPdfPageFactory
Interface used to create instances ofPdfPage
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PdfPage
createPdfPage(PdfDictionary pdfObject)
CreatePdfPage
on the base of the pagePdfDictionary
.PdfPage
createPdfPage(PdfDocument pdfDocument, PageSize pageSize)
CreatePdfPage
with given page size and add it to thePdfDocument
.
-
-
-
Method Detail
-
createPdfPage
PdfPage createPdfPage(PdfDictionary pdfObject)
CreatePdfPage
on the base of the pagePdfDictionary
.- Parameters:
pdfObject
- thePdfDictionary
object on which thePdfPage
will be based- Returns:
- created
PdfPage
-
createPdfPage
PdfPage createPdfPage(PdfDocument pdfDocument, PageSize pageSize)
CreatePdfPage
with given page size and add it to thePdfDocument
.- Parameters:
pdfDocument
-PdfDocument
to add pagepageSize
-PageSize
of the created page- Returns:
- created
PdfPage
-
-