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