[]
        
(Showing Draft Content)

CSJ2K.j2k.image.DataBlkInt.-ctor

DataBlkInt Constructor

DataBlkInt()

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

Declaration
public DataBlkInt()

DataBlkInt(int, int, int, int)

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

Declaration
public DataBlkInt(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)

DataBlkInt(DataBlkInt)

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

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