Click or drag to resize

mcOrganization Enumeration

An aspect of an Image's McImageType. This type definition specifies how an image is organized in memory. For example, the classic model of an image within system memory is that of a simple two dimensional array, while Windows has always relied on the DIB format -- the image is flipped last row first and each row must begin on a DWORD boundary. In many cases, the client doesn't really care how the image is organized as the client can access the image a row at a time. In this case, the client can specify AnyArray as a "don't care" condition.

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Public Enumeration mcOrganization
Members
  Member nameValueDescription
mcoAnyArray0to retrieve current array type
mcoFlatArray1simple block of bytes (i.e. legacy Frame Grabbers)
mcoInverted2Flat Array reads bottom to top
mcoDIBArray3DWORD aligned, and inverted
mcoBMPArray4rows are INT aligned (as in Bit Map)
mcoNewDIBArray5new format DIB - DWORD aligned, not inverted
See Also