Class ImageInput

java.lang.Object
javafx.scene.effect.Effect
javafx.scene.effect.ImageInput

public class ImageInput extends Effect
A type of source effect that simply passes the given Image through, unmodified, as an input to another Effect.
Since:
JavaFX 2.0
  • Property Summary

    Properties
    Type
    Property
    Description
    The source Image.
    Sets the x location of the source image, relative to the local coordinate space of the content Node.
    Sets the y location of the source image, relative to the local coordinate space of the content Node.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new instance of ImageInput with default parameters.
    ImageInput(Image source)
    Creates a new instance of ImageInput with the specified source.
    ImageInput(Image source, double x, double y)
    Creates a new instance of ImageInput with the specified source, x and y.
  • Method Summary

    Modifier and Type
    Method
    Description
    final Image
    Gets the value of the source property.
    final double
    Gets the value of the x property.
    final double
    Gets the value of the y property.
    final void
    Sets the value of the source property.
    final void
    setX(double value)
    Sets the value of the x property.
    final void
    setY(double value)
    Sets the value of the y property.
    The source Image.
    Sets the x location of the source image, relative to the local coordinate space of the content Node.
    Sets the y location of the source image, relative to the local coordinate space of the content Node.
  • Property Details

  • Constructor Details

    • ImageInput

      public ImageInput()
      Creates a new instance of ImageInput with default parameters.
    • ImageInput

      public ImageInput(Image source)
      Creates a new instance of ImageInput with the specified source.
      Parameters:
      source - the source Image.
      Since:
      JavaFX 2.1
    • ImageInput

      public ImageInput(Image source, double x, double y)
      Creates a new instance of ImageInput with the specified source, x and y.
      Parameters:
      source - the source Image.
      x - the x location of the source image
      y - the y location of the source image
      Since:
      JavaFX 2.1
  • Method Details

    • setSource

      public final void setSource(Image value)
      Sets the value of the source property.
      Property description:
      The source Image.
      Parameters:
      value - the value for the source property
      See Also:
    • getSource

      public final Image getSource()
      Gets the value of the source property.
      Property description:
      The source Image.
      Returns:
      the value of the source property
      See Also:
    • sourceProperty

      public final ObjectProperty<Image> sourceProperty()
      The source Image.
      Returns:
      the source property
      See Also:
    • setX

      public final void setX(double value)
      Sets the value of the x property.
      Property description:
      Sets the x location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Parameters:
      value - the value for the x property
      See Also:
    • getX

      public final double getX()
      Gets the value of the x property.
      Property description:
      Sets the x location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Returns:
      the value of the x property
      See Also:
    • xProperty

      public final DoubleProperty xProperty()
      Sets the x location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Returns:
      the x property
      See Also:
    • setY

      public final void setY(double value)
      Sets the value of the y property.
      Property description:
      Sets the y location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Parameters:
      value - the value for the y property
      See Also:
    • getY

      public final double getY()
      Gets the value of the y property.
      Property description:
      Sets the y location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Returns:
      the value of the y property
      See Also:
    • yProperty

      public final DoubleProperty yProperty()
      Sets the y location of the source image, relative to the local coordinate space of the content Node.
            Min: n/a
            Max: n/a
        Default: 0.0
       Identity: 0.0
      
      Default value:
      0.0
      Returns:
      the y property
      See Also: