Class PDFRenderer.GraphicsState

  • All Implemented Interfaces:
    java.lang.Cloneable
    Enclosing class:
    PDFRenderer

    class PDFRenderer.GraphicsState
    extends java.lang.Object
    implements java.lang.Cloneable
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.awt.Shape cliprgn
      the clip region
      (package private) java.awt.AlphaComposite fillAlpha
      the current compositing alpha for filling
      (package private) PDFPaint fillPaint
      the current paint for filling shapes
      (package private) java.awt.BasicStroke stroke
      the current stroke
      (package private) java.awt.AlphaComposite strokeAlpha
      the current compositing alpha for stroking
      (package private) PDFPaint strokePaint
      the current paint for drawing strokes
      (package private) java.awt.geom.AffineTransform xform
      the current transform
    • Constructor Summary

      Constructors 
      Constructor Description
      GraphicsState()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object clone()
      Clone this Graphics state.
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • cliprgn

        java.awt.Shape cliprgn
        the clip region
      • stroke

        java.awt.BasicStroke stroke
        the current stroke
      • strokePaint

        PDFPaint strokePaint
        the current paint for drawing strokes
      • fillPaint

        PDFPaint fillPaint
        the current paint for filling shapes
      • strokeAlpha

        java.awt.AlphaComposite strokeAlpha
        the current compositing alpha for stroking
      • fillAlpha

        java.awt.AlphaComposite fillAlpha
        the current compositing alpha for filling
      • xform

        java.awt.geom.AffineTransform xform
        the current transform
    • Constructor Detail

      • GraphicsState

        GraphicsState()
    • Method Detail

      • clone

        public java.lang.Object clone()
        Clone this Graphics state. Note that cliprgn is not cloned. It must be set manually from the current graphics object's clip
        Overrides:
        clone in class java.lang.Object