←Select platform

CubismCommand Constructor(int,int,int,int,RasterColor,CubismCommandFlags)

Summary

Initializes a new CubismCommand class object with explicit parameters.

Syntax
C#
VB
C++
Public Function New( _ 
   ByVal space As Integer, _ 
   ByVal length As Integer, _ 
   ByVal brightness As Integer, _ 
   ByVal angle As Integer, _ 
   ByVal fillColor As RasterColor, _ 
   ByVal flags As CubismCommandFlags _ 
) 
public: 
CubismCommand(  
   int space, 
   int length, 
   int brightness, 
   int angle, 
   RasterColor fillColor, 
   CubismCommandFlags flags 
) 

Parameters

space
Space between cubes, in pixels. As this value decreases the concentration of cubes increases and vice versa. The valid range is from 1 to the image or region dimension that is minimum, that is the minimum value of the height and width. This parameter only accepts positive values.

length
Cube side length, in pixels. This parameter only accepts positive values.

brightness
A value that indicates the brightness of the image. This value can be a number between -1000 and 1000. Negative values darken the image and positive values lighten the image.

angle
The cube's angle of orientation, in hundredths of a degree (+/-). This value is ignored if the CubismCommandFlags.Random flag has been set in the flags parameter. Possible values are from -36000 to 36000.

fillColor
Specifies the background color. This value is ignored if the CubismCommandFlags.Background flag has been set in the flags parameter.

flags
Flags that indicate the background color, cube shape and cube orientation. You can use a bit wise OR ( ¦ ) to specify one flag from each group.

Example

Run the CubismCommand on an image.

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Effects; 
 
public void CubismConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image2.jpg")); 
 
   // Prepare the command 
   CubismCommand command = new CubismCommand(200, 15, 200, 4500, new RasterColor(255, 0, 0), CubismCommandFlags.Color | CubismCommandFlags.Square | CubismCommandFlags.Random); 
   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.Effects 
 
Public Sub CubismConstructorExample() 
   Dim codecs As New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image2.jpg")) 
 
   ' Prepare the command 
   Dim command As CubismCommand 
   command = New CubismCommand(200, 15, 200, 4500, New RasterColor(255, 0, 0), CubismCommandFlags.Color Or CubismCommandFlags.Square Or CubismCommandFlags.Random) 
   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 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Effects Assembly