Package com.openstego.desktop.util.dwt
Class Image
- java.lang.Object
-
- com.openstego.desktop.util.dwt.Image
-
public class Image extends Object
Object to store Image data
-
-
Constructor Summary
Constructors Constructor Description Image(int width, int height)Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]getData()Get method for dataintgetHeight()Get method for heightintgetWidth()Get method for widthvoidsetData(double[] data)Set method for datavoidsetHeight(int height)Set method for heightvoidsetWidth(int width)Set method for width
-
-
-
Method Detail
-
getData
public double[] getData()
Get method for data- Returns:
- data
-
setData
public void setData(double[] data)
Set method for data- Parameters:
data- Value to be set
-
getWidth
public int getWidth()
Get method for width- Returns:
- width
-
setWidth
public void setWidth(int width)
Set method for width- Parameters:
width- Value to be set
-
getHeight
public int getHeight()
Get method for height- Returns:
- height
-
setHeight
public void setHeight(int height)
Set method for height- Parameters:
height- Value to be set
-
-