Save This Page
Home » iText-src-2.1.3 » com.lowagie » text » pdf » codec » postscript » [javadoc | source]
com.lowagie.text.pdf.codec.postscript
public class: PAPencil [javadoc | source]
java.lang.Object
   com.lowagie.text.pdf.codec.postscript.PAPencil
Nested Class Summary:
protected static class  PAPencil.State   
Field Summary
protected  Dimension size    The canvas size. 
protected  PAPencil.State state    The current graphics state. 
protected  Stack gStack    The stack of graphic states. 
protected  HashMap fonts    The font hashtable with postscript names as keys 
public  Graphics2D graphics    The current graphics device 
Constructor:
 public PAPencil(Component component) 
 public PAPencil(Graphics graphics,
    Dimension size) 
Method from com.lowagie.text.pdf.codec.postscript.PAPencil Summary:
arc,   arcn,   charpath,   clippath,   closepath,   curveto,   eofill,   erasepage,   fill,   findFont,   grestore,   grestoreall,   gsave,   initgraphics,   lineto,   lineto,   moveto,   moveto,   newpath,   rcurveto,   rectfill,   rectfill,   rectpath,   rectstroke,   rectstroke,   rlineto,   rmoveto,   show,   showpage,   stroke
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from com.lowagie.text.pdf.codec.postscript.PAPencil Detail:
 public  void arc(double cx,
    double cy,
    double r,
    double ang1,
    double ang2) 
 public  void arcn(double cx,
    double cy,
    double r,
    double ang1,
    double ang2) 
 public  void charpath(String aString,
    boolean adjustForStroking) 
 public  void clippath() 
 public  void closepath() 
 public  void curveto(double x1,
    double y1,
    double x2,
    double y2,
    double x3,
    double y3) throws PainterException 
 public  void eofill() 
 public  void erasepage() 
 public  void fill() 
 public Font findFont(String fontname) 
 public  void grestore() 
 public  void grestoreall() 
 public  void gsave() 
 public  void initgraphics() 
 public  void lineto(Point2D p) throws PainterException 
 public  void lineto(double x,
    double y) throws PainterException 
 public  void moveto(Point2D p) 
 public  void moveto(double x,
    double y) 
 public  void newpath() 
 public  void rcurveto(double dx1,
    double dy1,
    double dx2,
    double dy2,
    double dx3,
    double dy3) throws PainterException 
 public  void rectfill(Rectangle2D rect) 
 public  void rectfill(double x,
    double y,
    double width,
    double height) 
 public  void rectpath(double x,
    double y,
    double width,
    double height) 
 public  void rectstroke(Rectangle2D rect) 
 public  void rectstroke(double x,
    double y,
    double width,
    double height) 
 public  void rlineto(double dx,
    double dy) throws PainterException 
 public  void rmoveto(double dx,
    double dy) throws PainterException 
 public  void show(String string) throws PainterException 
 public  void showpage() 
 public  void stroke()