Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
RasterSizeFlags Enumeration
See Also  
Leadtools Namespace : RasterSizeFlags Enumeration




Flags which control the behaviour of image resize methods

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum RasterSizeFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As RasterSizeFlags
C# 
[FlagsAttribute()]
public enum RasterSizeFlags : Enum 
Managed Extensions for C++ 
[FlagsAttribute()]
__value public enum RasterSizeFlags : public Enum 
C++/CLI 
[FlagsAttribute()]
public enum class RasterSizeFlags : public Enum 

Members

MemberDescription
None Resize normally
FavorBlack(Document/Medical only) Preserve black objects when making the image smaller. This option affects only 1-bit, black-and-white images, where it prevents the disappearance of thin lines. You can use a bitwise OR ( | ) to combine this flag with another one. For example, Resample | FavorBlack causes color images to be resampled, but applies the favor-black option to 1-bit, black-and-white images.

If you apply this flag to an image that has more than 1 bit per pixel, then the behavior is undefined.

Resample Use linear interpolation and averaging to produce a higher-quality image
Bicubic Use bicubic interpolation and averaging to produce a higher quality image. This is slower than Resample

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterSizeFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also