←Select platform

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

Summary
Initializes a new DisplacementCommand class object with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithDisplacementMapImage:(LTRasterImage *)displacementMapImage horizontalFactor:(NSUInteger)horizontalFactor verticalFactor:(NSUInteger)verticalFactor fillColor:(LTRasterColor *)fillColor flags:(LTDisplacementCommandFlags)flags NS_DESIGNATED_INITIALIZER; 
public DisplacementCommand( 
   RasterImage displacementMapImage,  
   int horizontalFactor,  
   int verticalFactor,  
   RasterColor fillColor,  
   int flags 
) 
__init__(self,displacementMapImage,horizontalFactor,verticalFactor,fillColor,flags) # Overloaded constructor 

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

Run the DisplacementCommand on an image and applies the Displace Map filter.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Effects; 
 
 
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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Effects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.