Package com.itextpdf.kernel.pdf
Class PdfPageFactory
- java.lang.Object
-
- com.itextpdf.kernel.pdf.PdfPageFactory
-
- All Implemented Interfaces:
IPdfPageFactory
class PdfPageFactory extends java.lang.Object implements IPdfPageFactory
-
-
Constructor Summary
Constructors Constructor Description PdfPageFactory()
-
Method Summary
All Methods Instance Methods Concrete 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
public PdfPage createPdfPage(PdfDictionary pdfObject)
Description copied from interface:IPdfPageFactory
CreatePdfPage
on the base of the pagePdfDictionary
.- Specified by:
createPdfPage
in interfaceIPdfPageFactory
- Parameters:
pdfObject
- thePdfDictionary
object on which thePdfPage
will be based- Returns:
- created
PdfPage
-
createPdfPage
public PdfPage createPdfPage(PdfDocument pdfDocument, PageSize pageSize)
Description copied from interface:IPdfPageFactory
CreatePdfPage
with given page size and add it to thePdfDocument
.- Specified by:
createPdfPage
in interfaceIPdfPageFactory
- Parameters:
pdfDocument
-PdfDocument
to add pagepageSize
-PageSize
of the created page- Returns:
- created
PdfPage
-
-