|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.OurPDFWriter
public final class OurPDFWriter
Graphical convenience methods for producing PDF files.
This implementation explicitly generates a very simple 8.5 inch by 11 inch one-page PDF consisting of graphical operations. Hopefully this class will no longer be needed in the future once Java comes with better PDF support.
Constructor Summary | |
---|---|
OurPDFWriter(java.lang.String filename,
int dpi,
double scale)
Begin a blank PDF file with the given dots-per-inch and the given scale (the given file, if existed, will be overwritten) |
Method Summary | |
---|---|
void |
close()
Close and save this PDF object. |
OurPDFWriter |
drawCircle(int radius,
boolean fillOrNot)
Draws a circle of the given radius, centered at (0, 0). |
OurPDFWriter |
drawLine(int x1,
int y1,
int x2,
int y2)
Draws a line from (x1, y1) to (x2, y2). |
OurPDFWriter |
drawShape(java.awt.Shape shape,
boolean fillOrNot)
Draws a shape. |
OurPDFWriter |
setBoldLine()
Changes the line style to be bold. |
OurPDFWriter |
setColor(java.awt.Color color)
Changes the color for subsequent graphical drawing. |
OurPDFWriter |
setDashedLine()
Changes the line style to be dashed. |
OurPDFWriter |
setDottedLine()
Changes the line style to be dotted. |
OurPDFWriter |
setNormalLine()
Changes the line style to be normal. |
OurPDFWriter |
shiftCoordinateSpace(int x,
int y)
Shifts the coordinate space by the given amount. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OurPDFWriter(java.lang.String filename, int dpi, double scale)
java.lang.IllegalArgumentException
- if dpi is less than 50 or is greater than 3000Method Detail |
---|
public OurPDFWriter setColor(java.awt.Color color)
public OurPDFWriter setNormalLine()
public OurPDFWriter setBoldLine()
public OurPDFWriter setDottedLine()
public OurPDFWriter setDashedLine()
public OurPDFWriter shiftCoordinateSpace(int x, int y)
public OurPDFWriter drawLine(int x1, int y1, int x2, int y2)
public OurPDFWriter drawCircle(int radius, boolean fillOrNot)
public OurPDFWriter drawShape(java.awt.Shape shape, boolean fillOrNot)
public void close() throws java.io.IOException
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |