GridReprojectorConvertBitmapData Method |
NOTE: Experimental!
Convert source data to target data, assuming source and target are
32 bit bitmap data.
When defining source and target grid, remember they must include the
proper "scan width" (single row of pixels), which may be larger than
the width of the bitmap image.
Currently only supports top-down bitmaps.
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public void ConvertBitmapData(
byte[] source,
byte[] target
)
Public Sub ConvertBitmapData (
source As Byte(),
target As Byte()
)
public:
void ConvertBitmapData(
array<unsigned char>^ source,
array<unsigned char>^ target
)
member ConvertBitmapData :
source : byte[] *
target : byte[] -> unit
Parameters
- source
- Type: SystemByte
Source data array - target
- Type: SystemByte
Target data array
See Also