LEADTOOLS Image Processing (Leadtools.ImageProcessing.Effects assembly)

CubismCommand Constructor(Int32,Int32,Int32,Int32,RasterColor,CubismCommandFlags)

Show in webframe
Example 







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.
Cube side length, in pixels. This parameter only accepts positive values.
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.
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.
Specifies the background color. This value is ignored if the CubismCommandFlags.Background flag has been set in the flags parameter.
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.
Initializes a new CubismCommand class object with explicit parameters.
Syntax
public CubismCommand( 
   int space,
   int length,
   int brightness,
   int angle,
   RasterColor fillColor,
   CubismCommandFlags flags
)
'Declaration
 
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 _
)
'Usage
 
Dim space As Integer
Dim length As Integer
Dim brightness As Integer
Dim angle As Integer
Dim fillColor As RasterColor
Dim flags As CubismCommandFlags
 
Dim instance As New CubismCommand(space, length, brightness, angle, fillColor, flags)
public CubismCommand( 
   int space,
   int length,
   int brightness,
   int angle,
   RasterColor fillColor,
   CubismCommandFlags flags
)

            

            
function CubismCommand( 
   space ,
   length ,
   brightness ,
   angle ,
   fillColor ,
   flags 
)
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
Copy Code  
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, "Master.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
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, "Master.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";
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Effects;
using Leadtools.ImageProcessing;

      
public async Task CubismConstructorExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;
   // Load the image
   string srcFileName = @"Assets\Master.jpg";
   StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   // Prepare the command
   CubismCommand command = new CubismCommand(200, 15, 200, 4500, RasterColorHelper.Create(255,0,0), CubismCommandFlags.Color | CubismCommandFlags.Square | CubismCommandFlags.Random);
   command.Run(image);
   //Save as BMP
   string destFileName = @"result.bmp";
   StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);
   await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);

}
Requirements

Target Platforms

See Also

Reference

CubismCommand Class
CubismCommand Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.