See Also Examples Applies To
Computes the blue channel histogram of the native GdPicture image.
Syntax
object.HistogramGetBlue (*arHistoB())
The HistogramGetBlue syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| *arHistoB() | Required. Output 1D (0 based) Long Array. Size must be equal to 256. The blue channel histogram data. |
Returns
Long. GdPictureStatus
Category
Histogram Functions
Visual Basic Sample
Dim arHistoB(0 To 255) As Long
Dim nStat As Long
nStat = Object.HistogramGetBlue(arHistoB)