IXC_ScaleMethod Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IXC_ScaleMethod Enumeration}}
 
{{#customTitle:IXC_ScaleMethod Enumeration}}
 +
{{#parentPage:PXV:IXC_Enumerations|IXC_ScaleMethod|enum}}
  
Specifies the ...
+
Specifies the method which will be used for scaling the image.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum IXC_ScaleMethod
 
<pre class="brush:cpp;gutter:false">enum IXC_ScaleMethod
 
{
 
{
     ScaleMethod_Linear = 0;
+
     ScaleMethod_Linear   = 0,
     ScaleMethod_Bilinear = 1;
+
     ScaleMethod_Bilinear = 1,
     ScaleMethod_Bicubic = 2;
+
     ScaleMethod_Bicubic = 2,
 
};
 
};
 
</pre>
 
</pre>
Line 15: Line 17:
 
== Constants ==
 
== Constants ==
 
;ScaleMethod_Linear
 
;ScaleMethod_Linear
:The ...
+
:Eliminates the color data of the deleted pixels completely.
 
;ScaleMethod_Bilinear
 
;ScaleMethod_Bilinear
:The ...
+
:Scale using Bilinear interpolation.
 
;ScaleMethod_Bicubic
 
;ScaleMethod_Bicubic
:The ...
+
:Scale using Bicubic interpolation.
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IIXC_Page_Scale|IIXC_Page::Scale]], [[PXV:IIXC_Page_StretchDraw|IIXC_Page::StretchDraw]], [[PXV:IIXC_Page_StretchDraw2|IIXC_Page::StretchDraw2]]

Latest revision as of 10:33, 23 May 2015

Specifies the method which will be used for scaling the image.

Syntax

enum IXC_ScaleMethod
{
    ScaleMethod_Linear   = 0,
    ScaleMethod_Bilinear = 1,
    ScaleMethod_Bicubic  = 2,
};

Constants

ScaleMethod_Linear
Eliminates the color data of the deleted pixels completely.
ScaleMethod_Bilinear
Scale using Bilinear interpolation.
ScaleMethod_Bicubic
Scale using Bicubic interpolation.

See Also

IIXC_Page::Scale, IIXC_Page::StretchDraw, IIXC_Page::StretchDraw2