Package org.jcsp.awt

Class GraphicsCommand.DrawImage

Enclosing class:
GraphicsCommand

public static final class GraphicsCommand.DrawImage extends GraphicsCommand
This is the (immutable) command object for java.awt.Graphics.drawImage.
  • Field Details

    • drawtag

      final int drawtag
    • image

      final Image image
    • x

      final int x
    • y

      final int y
    • width

      final int width
    • height

      final int height
    • bgcolor

      final Color bgcolor
    • dx1

      final int dx1
    • dy1

      final int dy1
    • dx2

      final int dx2
    • dy2

      final int dy2
    • sx1

      final int sx1
    • sy1

      final int sy1
    • sx2

      final int sx2
    • sy2

      final int sy2
  • Constructor Details

    • DrawImage

      public DrawImage(Image image, int x, int y)
    • DrawImage

      public DrawImage(Image image, int x, int y, int width, int height)
    • DrawImage

      public DrawImage(Image image, int x, int y, Color bgcolor)
    • DrawImage

      public DrawImage(Image image, int x, int y, int width, int height, Color bgcolor)
    • DrawImage

      public DrawImage(Image image, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2)
    • DrawImage

      public DrawImage(Image image, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor)