IXC_NoiseType Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
m (Automatic page editing by robot) |
||
(10 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:IXC_NoiseType Enumeration}} | {{#customTitle:IXC_NoiseType Enumeration}} | ||
− | {{ | + | {{#parentPage:PXV:IXC_Enumerations|IXC_NoiseType|enum}} |
− | + | ||
− | Specifies the | + | Specifies the type of the filter. |
== Syntax == | == Syntax == | ||
<pre class="brush:cpp;gutter:false">enum IXC_NoiseType | <pre class="brush:cpp;gutter:false">enum IXC_NoiseType | ||
{ | { | ||
− | NoiseType_Simple = 0 | + | NoiseType_Simple = 0, |
− | NoiseType_Monochromatic = 1 | + | NoiseType_Monochromatic = 1, |
}; | }; | ||
</pre> | </pre> | ||
Line 16: | Line 16: | ||
== Constants == | == Constants == | ||
;NoiseType_Simple | ;NoiseType_Simple | ||
− | :The | + | :For each pixel's color component some randomly selected value is added. The value depends on the level value. |
;NoiseType_Monochromatic | ;NoiseType_Monochromatic | ||
− | :The | + | :For each pixel's color (NOT for the component but for the entire color value) some randomly selected value is added. The value depends on the level value. |
== See Also == | == See Also == | ||
− | + | [[PXV:IIXC_Page_FilterNoise|IIXC_Page_FilterNoise]] |
Latest revision as of 09:33, 23 May 2015
Specifies the type of the filter.
Syntax
enum IXC_NoiseType { NoiseType_Simple = 0, NoiseType_Monochromatic = 1, };
Constants
- NoiseType_Simple
- For each pixel's color component some randomly selected value is added. The value depends on the level value.
- NoiseType_Monochromatic
- For each pixel's color (NOT for the component but for the entire color value) some randomly selected value is added. The value depends on the level value.