Class PDFRectangle

java.lang.Object
org.apache.fop.pdf.PDFRectangle
All Implemented Interfaces:
PDFWritable

public class PDFRectangle extends Object implements PDFWritable
class representing a rectangle Rectangles are specified on page 183 of the PDF 1.3 spec.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected int
    lower left x coordinate
    protected int
    lower left y coordinate
    protected int
    upper right x coordinate
    protected int
    upper right y coordinate
  • Constructor Summary

    Constructors
    Constructor
    Description
    PDFRectangle(int[] array)
    create a rectangle giving an array of four values
    PDFRectangle(int llx, int lly, int urx, int ury)
    create a rectangle giving the four separate values
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Writes a "direct object" (inline object) representation to the stream.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • llx

      protected int llx
      lower left x coordinate
    • lly

      protected int lly
      lower left y coordinate
    • urx

      protected int urx
      upper right x coordinate
    • ury

      protected int ury
      upper right y coordinate
  • Constructor Details

    • PDFRectangle

      public PDFRectangle(int llx, int lly, int urx, int ury)
      create a rectangle giving the four separate values
      Parameters:
      llx - lower left x coordinate
      lly - lower left y coordinate
      urx - upper right x coordinate
      ury - upper right y coordinate
    • PDFRectangle

      public PDFRectangle(int[] array)
      create a rectangle giving an array of four values
      Parameters:
      array - values in the order llx, lly, urx, ury
  • Method Details