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