[]
        
(Showing Draft Content)

CSJ2K.j2k.image.DataBlkFloat.-ctor

DataBlkFloat Constructor

DataBlkFloat()

Creates a DataBlkFloat with 0 dimensions and no data array (i.e. data is null).

Declaration
public DataBlkFloat()

DataBlkFloat(int, int, int, int)

Creates a DataBlkFloat with the specified dimensions and position. The data array is initialized to an array of size w*h.

Declaration
public DataBlkFloat(int ulx, int uly, int w, int h)
Parameters
Type Name Description
int ulx

The horizontal coordinate of the upper-left corner of the block

int uly

The vertical coordinate of the upper-left corner of the block

int w

The width of the block (in pixels)

int h

The height of the block (in pixels)

DataBlkFloat(DataBlkFloat)

Copy constructor. Creates a DataBlkFloat which is the copy of the DataBlkFloat given as paramter.

Declaration
public DataBlkFloat(DataBlkFloat src)
Parameters
Type Name Description
DataBlkFloat src