Click or drag to resize

IMcBitMaskBitmapBits Property

A 2-dimensional array of packed bits representing a monochrome bitmap of the forground bits in the bit mask.

Namespace:  MediaCy.IQL.Features
Assembly:  MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
Syntax
VB
ReadOnly Property BitmapBits As Object
	Get

Property Value

Type: Object
Remarks
BitmapBits is a two dimensional array of Bytes with rows of "adjusted" Width size and columns of Height size. In VB it dimensioned as "Dim BitmapBits(0 to AdjustedWidth-1, 0 to Height-1) As Byte", while in C/C++ it is dimensioned as "BYTE BitmapBits[ Height, AdjustedWidth]". The "adjusted" Width is the Width divided by 8, rounded up to the next number evenly divisible by 4; that is, "CLng((Width+31)/32)*4". The BitmapBits array is directly suitable for use as the bits for a Windows monochrome bitmap of Width by Height size.
See Also