IIXC_Page::Histogramm Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 32: Line 32:
  
 
== See Also ==
 
== See Also ==
 +
[[PXV:IIXC_Page|IIXC_Page]]

Revision as of 04:05, 23 May 2015

The Histogramm method returns histogram(s) for one or more color channels for the entire page or a selected rectangular area.

Syntax

HRESULT Histogramm([in, out]  ULONG*  pRed,
                   [in, out]  ULONG*  pGreen,
                   [in, out]  ULONG*  pBlue,
                   [in, out]  ULONG*  pGray,
                   [in]       RECT*   pRect);

Parameters

pRed
[in, out] Pointer to an array of ULONGs that receives the histogram for the red channel.
pGreen
[in, out] Pointer to an array of ULONGs that receives the histogram for the green channel.
pBlue
[in, out] Pointer to an array of ULONGs that receives the histogram for the blue channel.
pGray
[in, out] Pointer to an array of ULONGs that receives the histogram for the gray channel.
pRect
[in] Pointer to RECT structure which defines the rectangular area for which color histograms will be calculated. If this parameter is NULL, the entire page will be used.

Return Value

Returns S_OK if operation was successful or error code in other cases.

Remarks

All UINT arrays passed to the function must have at least 256 items. If one or more histograms isn't needed, the corresponding parameter can be set to NULL.

See Also

IIXC_Page