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 PDFDocuments and theirPages, 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 PDFDocuments.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 PagePage. crop(Region area)Returns aPageinstance that contains only the content held by thisPageinstance that intersects the given "query" area.PageDocument. getPage(int n)Reads and returns a single page.PagePDFTextStream. 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 voidOutputHandler. endPage(Page page)Invoked when PDFxStream has finished processing a pagevoidRegionOutputTarget. endPage(Page page)voidSelectionOutputTarget. endPage(Page p)voidVisualOutputTarget. endPage(Page page)voidOutputHandler. startPage(Page page)Invoked when a page is about to be processed.voidOutputTarget. startPage(Page page)voidRegionOutputTarget. startPage(Page page)voidSelectionOutputTarget. startPage(Page p)voidVisualOutputTarget. 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 PageAnnotation. getAppearance()Returns aPagecontaining 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-formattedStrings, one for eachTablefound 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 voidGoogleHTMLOutputHandler. endPage(Page page)voidXMLOutputTarget. endPage(Page page)voidGoogleHTMLOutputHandler. startPage(Page page)voidXMLOutputTarget. startPage(Page page)
-