←Select platform

CloudsCommand Constructor(int,int,int,int,RasterColor,RasterColor,CloudsCommandType)

Summary
Initializes a new CloudsCommand with explicit parameters.
Syntax
C#
C++/CLI
Python
public: 
CloudsCommand(  
   int seed, 
   int frequency, 
   int density, 
   int opacity, 
   RasterColor backColor, 
   RasterColor cloudsColor, 
   CloudsCommandType type 
) 
__init__(self,seed,frequency,density,opacity,backColor,cloudsColor,type) # Overloaded constructor 

Parameters

seed
Seed value that controls the cloud creation process. Possible values are 0 or greater.

frequency
Value that controls the number of clouds inside the image. Possible values are 0 or greater.

density
Value that indicates the detail in the clouds. Possible values are 0 or greater. Use larger values to increase the detail in the clouds, smaller values for blurring.

opacity
Value that indicates the transparency, in percent, between the cloud's image and the original image. Valid values range from 0 to 100. This is used if the CloudsCommandType.Opacity or CloudsCommandType.Difference flag is set. A value of 0 indicates that no clouds are being used while the value of 100 represents a mix of clouds and image.

backColor
A Leadtools.RasterColor that represents which color to use to fill the areas outside the cloud.

cloudsColor
A Leadtools.RasterColor that represents which color to use to fill the cloud.

type
A CloudsCommandType enumeration value that specifies how to apply the clouds effect.

Example

Run the CloudsCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void CloudsConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image1.jpg")); 
 
   // Prepare the command 
   CloudsCommand command = new CloudsCommand(1000, 4, 10, 10, new RasterColor(255, 255, 255), new RasterColor(0, 0, 0), CloudsCommandType.Difference); 
   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.SpecialEffects Assembly

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