BitMiracle.LibJpeg.Classic.jpeg_common_struct.CreateBlocksArray C# (CSharp) Method

CreateBlocksArray() public static method

Creates the array of blocks.
public static CreateBlocksArray ( int blocksPerRow, int numberOfRows ) : jvirt_array
blocksPerRow int The number of blocks in row.
numberOfRows int The number of rows.
return jvirt_array
        public static jvirt_array<JBLOCK> CreateBlocksArray(int blocksPerRow, int numberOfRows)
        {
            return new jvirt_array<JBLOCK>(blocksPerRow, numberOfRows, allocJpegBlocks);
        }