PDFWritable
public class PDFRectangle extends java.lang.Object implements PDFWritable
Modifier and Type | Field | Description |
---|---|---|
protected int |
llx |
lower left x coordinate
|
protected int |
lly |
lower left y coordinate
|
protected int |
urx |
upper right x coordinate
|
protected int |
ury |
upper right y coordinate
|
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
|
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() |
protected int llx
protected int lly
protected int urx
protected int ury
public PDFRectangle(int llx, int lly, int urx, int ury)
llx
- lower left x coordinatelly
- lower left y coordinateurx
- upper right x coordinateury
- upper right y coordinatepublic PDFRectangle(int[] array)
array
- values in the order llx, lly, urx, urypublic java.lang.String toString()
toString
in class java.lang.Object
public void outputInline(java.io.OutputStream out, java.lang.StringBuilder textBuffer) throws java.io.IOException
IMPORTANT: If you need to write out binary output, call
PDFDocument.flushTextBuffer(StringBuilder, OutputStream)
before writing any content
to the OutputStream
!
outputInline
in interface PDFWritable
out
- the OutputStream (for binary content)textBuffer
- the text buffer for text contentjava.io.IOException
- if an I/O error occursCopyright 1999-2016 The Apache Software Foundation. All Rights Reserved.