IIXC_Page::SetPixel Method

From PDF XChange PDF SDK
Revision as of 06:51, 12 June 2015 by Dsbot (Talk | contribs) (Automatic page editing by robot)

Jump to: navigation, search

The SetPixel method sets the color of the specified pixel in the page.

Syntax

HRESULT SetPixel([in]  LONG   nX,
                 [in]  LONG   nY,
                 [in]  ULONG  Color,
                 [in]  ULONG  Flags);

Parameters

nX
[in] Specifies the X coordinate of the pixel. The value should be in the range (0, Width - 1), where Width is the width of the image.
nY
[in] Specifies the Y coordinate of the pixel. The value should be in the range (0, Height - 1), where Height is the height of the image.
Color
[in] Specifies the new color of the pixel.
Flags
[in] Combination of IXC_ColorFlags which specifies how the data will be copied.

Return Value

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

See Also

IIXC_Page