Uses of Interface
com.snowtide.pdf.Page
-
Packages that use Page Package Description com.snowtide.pdf This package contains a variety of core abstractions representing PDFDocument
s and theirPage
s, as well as various PDFxStream interfaces and implementations thereof that simply many PDF data extraction use cases.com.snowtide.pdf.annot This package contains interfaces and classes that PDFxStream uses to represent various types of annotations present in PDFDocument
s.com.snowtide.pdf.util This package contains utility classes implementing various PDFxStream capabilities, including Kodak print data extraction, extracting tabular data from PDF documents in CSV format, and merging multiple PDF documents into one.pdfts.examples The source code for all classes in this package are included in every PDFxStream distribution, provided to demonstrate how various interfaces and extension points can be utilized to satisfy specialized PDF data extraction requirements. -
-
Uses of Page in com.snowtide.pdf
Methods in com.snowtide.pdf that return Page Modifier and Type Method Description Page
Page. crop(Region area)
Returns aPage
instance that contains only the content held by thisPage
instance that intersects the given "query" area.Page
Document. getPage(int n)
Reads and returns a single page.Page
PDFTextStream. getPage(int n)
Deprecated.Methods in com.snowtide.pdf that return types with arguments of type Page Modifier and Type Method Description List<Page>
Document. getPages()
List<Page>
PDFTextStream. getPages()
Deprecated.Methods in com.snowtide.pdf with parameters of type Page Modifier and Type Method Description void
OutputHandler. endPage(Page page)
Invoked when PDFxStream has finished processing a pagevoid
RegionOutputTarget. endPage(Page page)
void
SelectionOutputTarget. endPage(Page p)
void
VisualOutputTarget. endPage(Page page)
void
OutputHandler. startPage(Page page)
Invoked when a page is about to be processed.void
OutputTarget. startPage(Page page)
void
RegionOutputTarget. startPage(Page page)
void
SelectionOutputTarget. startPage(Page p)
void
VisualOutputTarget. startPage(Page page)
-
Uses of Page in com.snowtide.pdf.annot
Methods in com.snowtide.pdf.annot that return Page Modifier and Type Method Description Page
Annotation. getAppearance()
Returns aPage
containing this annotation's rendered "appearance stream", if it explicitly defines one, null otherwise. -
Uses of Page in com.snowtide.pdf.util
Methods in com.snowtide.pdf.util with parameters of type Page Modifier and Type Method Description static String[]
TableUtils. convertTablesToCSV(Page p, char delim)
CallsTableUtils.convertTablesToCSV(Page, char, String)
with the specified page, cell delimiter, and a single linefeed (\n) as a linebreak sequence.static String[]
TableUtils. convertTablesToCSV(Page p, char delim, String linebreak)
Returns an array of CSV-formattedString
s, one for eachTable
found in the given page, using the specified character as a cell delimiter and the specified String as a linebreak sequence.static List<Table>
TableUtils. getAllTables(Page p)
-
Uses of Page in pdfts.examples
Methods in pdfts.examples with parameters of type Page Modifier and Type Method Description void
GoogleHTMLOutputHandler. endPage(Page page)
void
XMLOutputTarget. endPage(Page page)
void
GoogleHTMLOutputHandler. startPage(Page page)
void
XMLOutputTarget. startPage(Page page)
-