←Select platform

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

Summary
Initializes a new CubismCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
public: 
CubismCommand(  
   int space, 
   int length, 
   int brightness, 
   int angle, 
   RasterColor fillColor, 
   CubismCommandFlags flags 
) 
__init__(self,space,length,brightness,angle,fillColor,flags) # Overloaded constructor 

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#
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:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.3.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.