Package org.apache.fop.pdf
Class PDFRectangle
- java.lang.Object
-
- org.apache.fop.pdf.PDFRectangle
-
- All Implemented Interfaces:
PDFWritable
public class PDFRectangle extends java.lang.Object implements PDFWritable
class representing a rectangle Rectangles are specified on page 183 of the PDF 1.3 spec.
-
-
Constructor Summary
Constructors Constructor Description PDFRectangle(int[] array)
create a rectangle giving an array of four valuesPDFRectangle(int llx, int lly, int urx, int ury)
create a rectangle giving the four separate values
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
outputInline(java.io.OutputStream out, java.lang.StringBuilder textBuffer)
Writes a "direct object" (inline object) representation to the stream.java.lang.String
toString()
-
-
-
Constructor Detail
-
PDFRectangle
public PDFRectangle(int llx, int lly, int urx, int ury)
create a rectangle giving the four separate values- Parameters:
llx
- lower left x coordinatelly
- lower left y coordinateurx
- upper right x coordinateury
- 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 Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
outputInline
public void outputInline(java.io.OutputStream out, java.lang.StringBuilder textBuffer) throws java.io.IOException
Writes a "direct object" (inline object) representation to the stream. A text buffer is given for optimized encoding of text content.IMPORTANT: If you need to write out binary output, call
PDFDocument.flushTextBuffer(StringBuilder, OutputStream)
before writing any content to theOutputStream
!- Specified by:
outputInline
in interfacePDFWritable
- Parameters:
out
- the OutputStream (for binary content)textBuffer
- the text buffer for text content- Throws:
java.io.IOException
- if an I/O error occurs
-
-