Uses of Interface
com.snowtide.pdf.layout.Region
-
Packages that use Region 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.forms This package contains interfaces and classes that PDFxStream uses to represent various types of form data present in PDFDocuments.com.snowtide.pdf.layout This package contains interfaces and classes that PDFxStream uses to represent the document model implicitly defined by the content rendered by eachPagein a PDFDocument. -
-
Uses of Region in com.snowtide.pdf
Methods in com.snowtide.pdf that return Region Modifier and Type Method Description RegionPage. getCropBox()The "crop box" defined by the PDF for this page, expressed in user space units as withPage.getPageHeight()andPage.getPageWidth().Methods in com.snowtide.pdf with parameters of type Region 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. -
Uses of Region in com.snowtide.pdf.forms
Methods in com.snowtide.pdf.forms that return Region Modifier and Type Method Description RegionAcroRadioButtonGroupField. bounds()Returns the region on the page where this radio button group is positioned. -
Uses of Region in com.snowtide.pdf.layout
Classes in com.snowtide.pdf.layout that implement Region Modifier and Type Class Description classRectangleConcrete representation of aRegion, with utility methods.Methods in com.snowtide.pdf.layout that return Region Modifier and Type Method Description RegionImage. bitmapBounds()RegionBounded. bounds()RegionRectangle. bounds()RegionRegion. bounds()Instances ofRegionwill always return themselves from theirboundsimplementations.Methods in com.snowtide.pdf.layout with parameters of type Region Modifier and Type Method Description static booleanRectangle. contains(Region query, Region r)Returns true only ifris entirely contained withinquery.BlockBlock. crop(Region area)Returns aBlockthat contains only the content held by thisBlockthat intersects the given "query" area.static RectangleRectangle. intersection(Region... regions)Returns a Rectangle that is the intersection ofstartand all of the remaining provided Regions, or null if there is no common intersection.static booleanRectangle. intersects(Region r1, Region r2)Returns true only if any portion of the two Regions intersect.static RectangleRectangle. union(Region... regions)Returns aRectanglewhose coordinates represent the minimum bounding rectangle of all of the provided rectangles.Constructors in com.snowtide.pdf.layout with parameters of type Region Constructor Description Rectangle(Region src)
-