Class PadMode

java.lang.Object
org.apache.batik.ext.awt.image.PadMode
All Implemented Interfaces:
Serializable

public final class PadMode extends Object implements Serializable
This is a typesafe enumeration of the standard Composite rules for the CompositeRable operation. (over, in, out, atop, xor, arith)
See Also:
  • Field Details

    • MODE_ZERO_PAD

      public static final int MODE_ZERO_PAD
      Pad edges with zeros
      See Also:
    • MODE_REPLICATE

      public static final int MODE_REPLICATE
      Pad edges by replicating edge pixels
      See Also:
    • MODE_WRAP

      public static final int MODE_WRAP
      Pad edges by wrapping around edge pixels
      See Also:
    • ZERO_PAD

      public static final PadMode ZERO_PAD
      Pad edges with zeros
    • REPLICATE

      public static final PadMode REPLICATE
      Pad edges by replicating edge pixels
    • WRAP

      public static final PadMode WRAP
      Pad edges by replicating edge pixels
  • Method Details

    • getMode

      public int getMode()
      Returns the mode of this pad mode.