This function gets the name of the next global block associated with the HIGEAR image, and iterates through all global named blocks.
Declaration:
|
Copy Code
|
AT_ERRCOUNT ART_global_block_next(
HIGEAR hIGear,
LPART_BLOCK_NAME lpBlockName
);
|
Arguments:
Name |
Type |
Description |
hIGear |
HIGEAR |
HIGEAR handle to the image. |
lpBlockName |
LPART_BLOCK_NAME |
A far pointer to an 8-byte array of memory that returns the type of block to query. The block type is either an ART-defined constant beginning with ART_BLOCK or a user-defined block. See ARTAPI.H file for the full list of ART-defined constants. |
Return Value:
Returns the number of ImageGear errors that occurred during the function call.
Supported Raster Image Formats:
All pixel formats supported by ImageGear for C and C++.
Sample:
None
Example:
|
Copy Code
|
HIGEAR hIGear; /* HIGEAR handle of image */
ART_BLOCK_NAME lpBlockName; /* returned type of first */
/* global block */
AT_ERRCOUNT nErrcount; /* tally of IG errors */
/* on stack */
nErrcount = ART_global_block_first(hIGear,&lpBlockName);
while (*lpBlockName)
{
if (!memcmp(&lpBlockName, "EYEBALL\0", 8))
break;
nErrcount = ART_global_block_next(hIGear,
&lpBlockName);
}
|
Remarks:
ART_global_block_first() gets the first block name. The block data for the named block is retrieved by calling ART_global_block_query() function. This function sets lpBlockName to zero when there are no more blocks, providing you with an easy check for ending your loop. Block names are returned in no particular order.
An error is set if any of the following conditions are met:
- hIGear does not reference a valid ImageGear handle.
- lpBlockName does not point to a valid address.