IIXC_Page::SetPixel Method

From PDF XChange PDF SDK
Jump to: navigation, search
(See Also)
Line 3: Line 3:
 
{{#parentPage:PXV:IIXC_Page|SetPixel Method|method}}
 
{{#parentPage:PXV:IIXC_Page|SetPixel Method|method}}
  
{{ToReview}}
 
  
 
The method sets the color of the specified pixel in the page.
 
The method sets the color of the specified pixel in the page.
Line 21: Line 20:
 
:[in]  Specifies the new color of the pixel.
 
:[in]  Specifies the new color of the pixel.
 
;nFlags
 
;nFlags
:[in]  Combination of [[PXV:IXC_ColorFlags|flags]] which specifies how the data will be copied.
+
:[in]  Combination of [[PXV:IXC_ColorFlags|IXC_ColorFlags]] which specifies how the data will be copied.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 13:19, 18 May 2015


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

Syntax

HRESULT SetPixel([in]  LONG   ptX,
                 [in]  LONG   ptY,
                 [in]  ULONG  nColor,
                 [in]  ULONG  nFlags);

Parameters

ptX
[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.
ptY
[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.
nColor
[in] Specifies the new color of the pixel.
nFlags
[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
IIXC_Page::GetPixel
IIXC_Page::GetPixelIndex
IIXC_Page::SetPixelIndex
IXC_ColorFlags