C#
VB
Java
Objective-C
WinRT C#
C++
Flags which control the behavior of image resize methods.
[FlagsAttribute()]
public enum RasterSizeFlags
<FlagsAttribute()>
Public Enum RasterSizeFlags
[FlagsAttribute()]
public enum RasterSizeFlags
typedef NS_OPTIONS(NSUInteger, LTRasterSizeFlags)
public enum RasterSizeFlags
Leadtools.RasterSizeFlags = function() { };
Leadtools.RasterSizeFlags.prototype = {<br/>
None = 0x00000000,
FavorBlack = 0x00000001,
Resample = 0x00000002,
Bicubic = 0x00000004,
ScaleToGray = 0x00000008,
OldResample = 0x00000010,
PremultiplyAlpha = 0x00000020,
};
[FlagsAttribute()]
public enum class RasterSizeFlags
Members
Value | Member | Description |
---|---|---|
0x00000000 | None | Resize normally |
0x00000001 | 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. |
0x00000002 | Resample | Use linear interpolation and averaging to produce a higher-quality image |
0x00000004 | Bicubic | Use bicubic interpolation and averaging to produce a higher quality image. This is slower than Resample |
0x00000008 | ScaleToGray | (Document/Medical only). Use interpolation to display black and white images using shades of gray when the image is resized. This improves the readability when the image is scaled up or down. The generated image is 8-bit grayscale, so this option should be used only for black and white images. |
0x00000010 | OldResample | Use the old resample algorithm from LEADTOOLS 14.5. |
0x00000020 | PremultiplyAlpha | Premultiply the alpha channel values when performing resize. |
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET