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



type
Flag that indicates how the shift will be done.
Initializes a new ConvertSignedToUnsignedCommand class object with explicit parameters. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal type As ConvertSignedToUnsignedCommandType _
)
Visual Basic (Usage)Copy Code
Dim type As ConvertSignedToUnsignedCommandType
 
Dim instance As New ConvertSignedToUnsignedCommand(type)
C# 
public ConvertSignedToUnsignedCommand( 
   ConvertSignedToUnsignedCommandType type
)
C++/CLI 
public:
ConvertSignedToUnsignedCommand( 
   ConvertSignedToUnsignedCommandType type
)

Parameters

type
Flag that indicates how the shift will be done.

Example

Run the ConvertSignedToUnsignedCommand on an image. The passed image must be signed image.

Visual BasicCopy Code
Public Sub ConvertSignedToUnsignedConstructorExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm"))

   ' Prepare the command
   Dim command As ConvertSignedToUnsignedCommand = New ConvertSignedToUnsignedCommand(ConvertSignedToUnsignedCommandType.ShiftNegativeToZero)
   'convert image to unsigned.
   command.Run(leadImage)

End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
public void ConvertSignedToUnsignedConstructorExample()
   {
      // Load an image
      RasterCodecs codecs = new RasterCodecs();
      codecs.ThrowExceptionsOnInvalidImages = true;

      RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm"));

      // Prepare the command
      ConvertSignedToUnsignedCommand command = new ConvertSignedToUnsignedCommand(ConvertSignedToUnsignedCommandType.ShiftNegativeToZero);
      // convert image to unsigned.
      command.Run(image);

   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
SilverlightCSharpCopy Code
public void ConvertSignedToUnsignedConstructorExample(RasterImage image)
{
   // Prepare the command
   ConvertSignedToUnsignedCommand command = new ConvertSignedToUnsignedCommand(ConvertSignedToUnsignedCommandType.ShiftNegativeToZero);
   // convert image to unsigned.
   command.Run(image);
   image.Dispose();
}
SilverlightVBCopy Code
Public Sub ConvertSignedToUnsignedConstructorExample(ByVal image As RasterImage)
   ' Prepare the command
   Dim command As ConvertSignedToUnsignedCommand = New ConvertSignedToUnsignedCommand(ConvertSignedToUnsignedCommandType.ShiftNegativeToZero)
   ' convert image to unsigned.
   command.Run(image)
   image.Dispose()
End Sub

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