LEADTOOLS Image Processing (Leadtools.ImageProcessing.Effects assembly)
LEAD Technologies, Inc

DisplacementCommand Constructor(RasterImage,Int32,Int32,RasterColor,DisplacementCommandFlags)

Example 





The displacement map image.
Horizontal displacement factor, in percent of the image dimensions. The valid range is from 0 to 100.
Vertical displacement factor, in percent of the image dimensions. The valid range is from 0 to 100.
The RasterColor value that specifies the fill color for any exposed areas.
Flags that indicate how to handle exposed areas, and the way to use the displacement map image.
Initializes a new DisplacementCommand class object with explicit parameters. .NET support WinRT support Silverlight support
Syntax
'Declaration
 
Public Function New( _
   ByVal displacementMapImage As RasterImage, _
   ByVal horizontalFactor As Integer, _
   ByVal verticalFactor As Integer, _
   ByVal fillColor As RasterColor, _
   ByVal flags As DisplacementCommandFlags _
)
'Usage
 
Dim displacementMapImage As RasterImage
Dim horizontalFactor As Integer
Dim verticalFactor As Integer
Dim fillColor As RasterColor
Dim flags As DisplacementCommandFlags
 
Dim instance As New DisplacementCommand(displacementMapImage, horizontalFactor, verticalFactor, fillColor, flags)
function DisplacementCommand( 
   displacementMapImage ,
   horizontalFactor ,
   verticalFactor ,
   fillColor ,
   flags 
)

Parameters

displacementMapImage
The displacement map image.
horizontalFactor
Horizontal displacement factor, in percent of the image dimensions. The valid range is from 0 to 100.
verticalFactor
Vertical displacement factor, in percent of the image dimensions. The valid range is from 0 to 100.
fillColor
The RasterColor value that specifies the fill color for any exposed areas.
flags
Flags that indicate how to handle exposed areas, and the way to use the displacement map image.
Example
 
Public Sub DisplacementConstructorExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

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

   ' Prepare the command
   Dim fillColor As RasterColor = New RasterColor(0, 0, 0)
   Dim displaceImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg"))
   Dim command As DisplacementCommand = New DisplacementCommand(displaceImage, 17, 24, fillColor, DisplacementCommandFlags.NoChange Or DisplacementCommandFlags.StretchToFit)
   command.Run(leadImage)
   codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)

End Sub

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

      RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));

      // Prepare the command
      RasterColor fillColor = new RasterColor(0, 0, 0);
      RasterImage displaceImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg"));

      DisplacementCommand command = new DisplacementCommand(displaceImage, 17, 24, fillColor, DisplacementCommandFlags.NoChange | DisplacementCommandFlags.StretchToFit);
      command.Run(image);
      codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);

   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
[TestMethod]
public async Task DisplacementConstructorExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;
   // Load the image
   string srcFileName = @"Assets\Image1.cmp";
   StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   // Prepare the command
   RasterColor fillColor = RasterColorHelper.Create(0, 0, 0);

   srcFileName = @"Assets\Image1.cmp";
   loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage displaceImage = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   DisplacementCommand command = new DisplacementCommand(displaceImage, 17, 24, fillColor, DisplacementCommandFlags.NoChange | DisplacementCommandFlags.StretchToFit);
   command.Run(image);

   //Save as BMP
   string destFileName = @"result.bmp";
   StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);
   await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);
}
public void DisplacementConstructorExample(RasterImage image, RasterImage displaceImage, Stream outStream)
{
   // Prepare the command
   RasterColor fillColor = new RasterColor(0, 0, 0);
   DisplacementCommand command = new DisplacementCommand(displaceImage, 17, 24, fillColor, DisplacementCommandFlags.NoChange | DisplacementCommandFlags.StretchToFit);
   command.Run(image);
   // Save result image
   RasterCodecs codecs = new RasterCodecs();
   codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24);
   image.Dispose();
   displaceImage.Dispose();
}
Public Sub DisplacementConstructorExample(ByVal image As RasterImage, ByVal displaceImage As RasterImage, ByVal outStream As Stream)
   ' Prepare the command
   Dim fillColor As RasterColor = New RasterColor(0, 0, 0)
   Dim command As DisplacementCommand = New DisplacementCommand(displaceImage, 17, 24, fillColor, DisplacementCommandFlags.NoChange _
                                                                Or DisplacementCommandFlags.StretchToFit)
   command.Run(image)
   ' Save result image
   Dim codecs As RasterCodecs = New RasterCodecs()
   codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24)
   image.Dispose()
   displaceImage.Dispose()
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DisplacementCommand Class
DisplacementCommand Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.