Get the value of a pixel in a mosaic tile.
| Declaration | Zeolite.h |
|---|---|
| Implementation | Zeolite.cpp |
bool zmap_tile_GetPixel(void* hTile, long x, long y, void* pValue);
| Name | Type | Comment |
|---|---|---|
| hTile | void* | A handle to a mosaic tile, a pixel of which is to be retrieved (see zmap_GetMosaicTile). |
| x | long | The x-coordinate of the pixel within the tile. |
| y | long | The y-coordinate of the pixel within the tile. |
| pValue | void* | A pointer (of unknown type) to the user-supplied entity that shall receive the pixel value. |
False if an error occurred, and true otherwise.
Please refer to zmap_GetPixel for further information.