Class FloodRed

java.lang.Object
org.apache.batik.ext.awt.image.rendered.AbstractRed
org.apache.batik.ext.awt.image.rendered.FloodRed
All Implemented Interfaces:
RenderedImage, CachableRed

public class FloodRed extends AbstractRed
This implementation of RenderedImage will generate an infinate field of a single color. It reports bounds but will in fact render out to infinity.
  • Constructor Details

    • FloodRed

      public FloodRed(Rectangle bounds)
      Construct a fully transparent black image bounds size.
      Parameters:
      bounds - the bounds of the image (in fact will respond with any request).
    • FloodRed

      public FloodRed(Rectangle bounds, Paint paint)
      Construct a fully transparent image bounds size, will paint one tile with paint. Thus paint should not be a pattered paint or gradient but should be a solid color.
      Parameters:
      bounds - the bounds of the image (in fact will respond with any request).
  • Method Details