ChartToolsConvertDoubleArrayToBitmap Method (Double, Int32, Int32, Double, Double, Int32, Byte, Byte, Byte, Byte) |
LightningChart .NET Help
Convert Array of Double to Bitmap.
Namespace:
Arction.Wpf.ChartingMVVM
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic static BitmapFrame ConvertDoubleArrayToBitmap(
double[][] array,
int width,
int height,
double maxValue,
double minValue,
int stepCount,
byte[] colorsA,
byte[] colorsR,
byte[] colorsG,
byte[] colorsB
)
Public Shared Function ConvertDoubleArrayToBitmap (
array As Double()(),
width As Integer,
height As Integer,
maxValue As Double,
minValue As Double,
stepCount As Integer,
colorsA As Byte(),
colorsR As Byte(),
colorsG As Byte(),
colorsB As Byte()
) As BitmapFrame
public:
static BitmapFrame^ ConvertDoubleArrayToBitmap(
array<array<double>^>^ array,
int width,
int height,
double maxValue,
double minValue,
int stepCount,
array<unsigned char>^ colorsA,
array<unsigned char>^ colorsR,
array<unsigned char>^ colorsG,
array<unsigned char>^ colorsB
)
Parameters
- array
- Type: SystemDouble
Double array. - width
- Type: SystemInt32
Width. - height
- Type: SystemInt32
Height. - maxValue
- Type: SystemDouble
Maximum value. - minValue
- Type: SystemDouble
Minimum value. - stepCount
- Type: SystemInt32
Step count. - colorsA
- Type: SystemByte
Alpha array. - colorsR
- Type: SystemByte
Red array. - colorsG
- Type: SystemByte
Green array. - colorsB
- Type: SystemByte
Blue array.
Return Value
Type:
BitmapFrameBitmap frame.
See Also