LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ConvertSignedToUnsignedCommandType Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : ConvertSignedToUnsignedCommandType Enumeration



Flag that indicates how the shift will be done when converting images. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Enum ConvertSignedToUnsignedCommandType 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As ConvertSignedToUnsignedCommandType
C# 
public enum ConvertSignedToUnsignedCommandType : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class ConvertSignedToUnsignedCommandType : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
ShiftMinimumToZeroShift all image data to make the minimum value in the image 0 and the maximum value to the maximum possible value (65535 for 16-bit, 4095 for 12-bit).
ShiftNegativeToZeroSet all the negative pixels to 0 and leave the positive pixels unchanged. (Achieves the same result as ClearNegativePixelsCommand).
ShiftRangeOnlyShift data by adding half the range to each pixel without changing bits outside the (LowBit-HighBit) range.
ShiftRangeProcessOutSideShift data by adding half the range to each pixel and set to zero all bits outside the (LowBit-HighBit) range.
ShiftZeroToCenterShift by 32768 (16-bit images) or by 2048 (12-bit images).

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.ConvertSignedToUnsignedCommandType

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also