IIXC_Page::InvertChannel Method
From PDF XChange PDF SDK
(→See Also) |
|||
Line 5: | Line 5: | ||
{{ToReview}} | {{ToReview}} | ||
− | The method | + | The method inverts color data only within the specified color channel. |
== Syntax == | == Syntax == | ||
Line 13: | Line 13: | ||
== Parameters == | == Parameters == | ||
;nCannel | ;nCannel | ||
− | :[in] | + | :[in] Specifies the [[PXV:IXC_Channel|channel]] for which function should be applied. |
;pRect | ;pRect | ||
− | :[in] Pointer to RECT. | + | :[in] Pointer to RECT structure which defines the rectangular area where colors should be inverted. If this parameter is NULL, the entire page will be inverted. |
+ | {{note|Please note that processing of part of the page is not supported for some internal formats. For example, it is not supported for indexed images, because each pixel in such images contains not the color, but the index into color table (palette) which is common for the entire page.}} | ||
== Return Value == | == Return Value == |
Revision as of 06:26, 29 April 2015
The method inverts color data only within the specified color channel.
Contents
Syntax
HRESULT InvertChannel([in] IXC_Channel nCannel, [in] RECT* pRect);
Parameters
- nCannel
- [in] Specifies the channel for which function should be applied.
- pRect
- [in] Pointer to RECT structure which defines the rectangular area where colors should be inverted. If this parameter is NULL, the entire page will be inverted.
Note:
Please note that processing of part of the page is not supported for some internal formats. For example, it is not supported for indexed images, because each pixel in such images contains not the color, but the index into color table (palette) which is common for the entire page.Return Value
Returns S_OK if operation was successful or error code in other cases.