IIXC_Page::Invert Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:IIXC_Page::Invert Method}} | {{#customTitle:IIXC_Page::Invert Method}} | ||
− | {{#parentPage:PXV:IIXC_Page|Invert | + | {{#parentPage:PXV:IIXC_Page#Methods|Invert|method}} |
− | + | ||
The '''Invert''' method inverts the colors of the entire page or a specified rectangular area within the page. The result is similar to a photographic negative. | The '''Invert''' method inverts the colors of the entire page or a specified rectangular area within the page. The result is similar to a photographic negative. | ||
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT Invert([in] RECT* | + | <pre class="brush:cpp;gutter:false">HRESULT Invert([in] RECT* stRect);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;stRect |
:[in] Pointer to a RECT structure which defines the rectangular area where colors should be inverted. If this parameter is NULL, the entire page will be inverted. | :[in] Pointer to a 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 | + | {{note|Please note that processing part of the page is not supported for some internal formats. For example, it is not supported for indexed images, because the pixels in such images do not contain the color, but the index into a color table (or palette) which is common for the entire page.}} |
== Return Value == | == Return Value == | ||
Line 18: | Line 18: | ||
== See Also == | == See Also == | ||
− | + | [[PXV:IIXC_Page|IIXC_Page]] | |
− | + |
Latest revision as of 02:16, 15 June 2015
The Invert method inverts the colors of the entire page or a specified rectangular area within the page. The result is similar to a photographic negative.
Syntax
HRESULT Invert([in] RECT* stRect);
Parameters
- stRect
- [in] Pointer to a 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 part of the page is not supported for some internal formats. For example, it is not supported for indexed images, because the pixels in such images do not contain the color, but the index into a color table (or palette) which is common for the entire page.Return Value
Returns S_OK if operation was successful or error code in other cases.