←Select platform

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

Summary

Initializes a new CloudsCommand with explicit parameters.

Syntax

C#
VB
WinRT C#
C++
  
Public Function New( _ 
   ByVal seed As Integer, _ 
   ByVal frequency As Integer, _ 
   ByVal density As Integer, _ 
   ByVal opacity As Integer, _ 
   ByVal backColor As Leadtools.RasterColor, _ 
   ByVal cloudsColor As Leadtools.RasterColor, _ 
   ByVal type As Leadtools.Imageprocessing.Specialeffects.CloudsCommandType _ 
) 
function CloudsCommand(  
   seed , 
   frequency , 
   density , 
   opacity , 
   backColor , 
   cloudsColor , 
   type  
) 

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#
VB
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:\Users\Public\Documents\LEADTOOLS Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.SpecialEffects 
      Leadtools.Examples.Support.SetLicense() 
 
Public Sub CloudsConstructorExample() 
   Dim codecs As New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image1.jpg")) 
 
   ' Prepare the command 
   Dim command As CloudsCommand = New CloudsCommand(1000, 4, 10, 10, New RasterColor(255, 255, 255), New RasterColor(0, 0, 0), CloudsCommandType.Difference) 
   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 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly