←Select platform

OceanCommand Constructor(int,int,bool)

Summary
Initializes a new OceanCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
public: 
OceanCommand(  
   int amplitude, 
   int frequency, 
   bool lowerTransparency 
) 
__init__(self,amplitude,frequency,lowerTransparency) # Overloaded constructor 

Parameters

amplitude
Wave magnitude, in pixels. This parameter only accepts positive values.

frequency
Number of repeated waves. This parameter only accepts positive values.

lowerTransparency
Flag that indicates the transparency direction. Possible values are:

Value Meaning
TRUE Transparency increases as you move from the bottom of the image to the top of the image, line by line.
FALSE Transparency increases as you move from the top of the image to the bottom of the image, line by line.
Example

Run the OceanCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void OceanConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   OceanCommand command = new OceanCommand(20, 6, true); 
   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:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.SpecialEffects Assembly

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