DK11 for Delphi | GisLayerPixel.TGIS_LayerPixel.putBitmapRawData | Constructors | Fields | Methods | Properties | Events
Fills provided _bitmap array with values defined by _extent. If the current layer does not fully cover the _extent then values outside the layer scope should be left untouched.
// Delphi protected function putBitmapRawData( const _extent : TGIS_Extent; const _bitmap : TGIS_Pixels; const _width : Integer; const _height : Integer ) : Boolean;
// C++ Builder protected: bool putBitmapRawData( TGIS_Extent* const _extent, TGIS_Pixels* const _bitmap, const int _width, const int _height );
Name | Type | Description |
---|---|---|
_extent | TGIS_Extent | extent of the _grid |
_bitmap | TGIS_Pixels | allocated bitmap(with/height ratio of the _bitmap should be the same as width/height ration of the _extent) |
_width | Integer | width of needed area in pixels |
_height | Integer | height of needed area in pixels |
Type | Description |
---|---|
Boolean | True if success |
Function operates on "raw" data - before coordinate system applied.