public CubismCommand(
int space,
int length,
int brightness,
int angle,
RasterColor fillColor,
CubismCommandFlags flags
)
public:
CubismCommand(
int space,
int length,
int brightness,
int angle,
RasterColor fillColor,
CubismCommandFlags flags
)
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.
Run the CubismCommand on an image.
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";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document