Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.11
PuzzleEffectCommand Constructor(Int32,Int32,Int32,PuzzleEffectCommandFlags,RasterColor)
See Also  Example
Leadtools.ImageProcessing.SpecialEffects Namespace > PuzzleEffectCommand Class > PuzzleEffectCommand Constructor : PuzzleEffectCommand Constructor(Int32,Int32,Int32,PuzzleEffectCommandFlags,RasterColor)




xblock
If the PuzzleEffectCommandFlags.Size flag is set, this value represents the width of the each block, in pixels. If the PuzzleEffectCommandFlags.Count flag is set, it represents the number of blocks per row. Only positive values are accepted.
yblock
If the PuzzleEffectCommandFlags.Size flag is set, this value represents the height of the each block, in pixels. If the PuzzleEffectCommandFlags.Count flag is set, it represents the number of blocks per column. Only positive values are accepted.
randomize
The starting point for the randomization process. Valid values range from 0 through 500. Use 0 to have the command select the starting point. Only positive values are accepted.
flags
Flags that indicate how to apply the puzzle effect.
borderColor
If the PuzzleEffectCommandFlags.Border flag is set, this value represents the color of the border that will be drawn around the blocks. This parameter is ignored if the PuzzleEffectCommandFlags.Border flag is not set.
Initializes a new PuzzleEffectCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal xblock As Integer, _
   ByVal yblock As Integer, _
   ByVal randomize As Integer, _
   ByVal flags As PuzzleEffectCommandFlags, _
   ByVal borderColor As RasterColor _
)
Visual Basic (Usage)Copy Code
Dim xblock As Integer
Dim yblock As Integer
Dim randomize As Integer
Dim flags As PuzzleEffectCommandFlags
Dim borderColor As RasterColor
 
Dim instance As PuzzleEffectCommand(xblock, yblock, randomize, flags, borderColor)
C# 
public PuzzleEffectCommand( 
   int xblock,
   int yblock,
   int randomize,
   PuzzleEffectCommandFlags flags,
   RasterColor borderColor
)
Managed Extensions for C++ 
public: PuzzleEffectCommand( 
   int xblock,
   int yblock,
   int randomize,
   PuzzleEffectCommandFlags flags,
   RasterColor borderColor
)
C++/CLI 
public:
PuzzleEffectCommand( 
   int xblock,
   int yblock,
   int randomize,
   PuzzleEffectCommandFlags flags,
   RasterColor borderColor
)

Parameters

xblock
If the PuzzleEffectCommandFlags.Size flag is set, this value represents the width of the each block, in pixels. If the PuzzleEffectCommandFlags.Count flag is set, it represents the number of blocks per row. Only positive values are accepted.
yblock
If the PuzzleEffectCommandFlags.Size flag is set, this value represents the height of the each block, in pixels. If the PuzzleEffectCommandFlags.Count flag is set, it represents the number of blocks per column. Only positive values are accepted.
randomize
The starting point for the randomization process. Valid values range from 0 through 500. Use 0 to have the command select the starting point. Only positive values are accepted.
flags
Flags that indicate how to apply the puzzle effect.
borderColor
If the PuzzleEffectCommandFlags.Border flag is set, this value represents the color of the border that will be drawn around the blocks. This parameter is ignored if the PuzzleEffectCommandFlags.Border flag is not set.

Example

Visual BasicCopy Code
ImageProcessing.SpecialEffects.PuzzleEffectCommand.PuzzleEffectConstructor
   Public Sub PuzzleEffectConstructorExample()
      RasterCodecs.Startup()
      Dim codecs As New RasterCodecs()
      codecs.ThrowExceptionsOnInvalidImages = True

      Dim leadImage As RasterImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg")

      ' Prepare the command
      Dim command As PuzzleEffectCommand = New PuzzleEffectCommand(16, 16, 0, PuzzleEffectCommandFlags.Border Or PuzzleEffectCommandFlags.Shuffle Or PuzzleEffectCommandFlags.Count Or PuzzleEffectCommandFlags.Resize, New RasterColor(0, 0, 0))
      ' Apply Puzzle Effect to this image.
      command.Run(leadImage)
      codecs.Save(leadImage, "C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Result.jpg", RasterImageFormat.Jpeg, 24)

      RasterCodecs.Shutdown()
   End Sub
C#Copy Code
ImageProcessing.SpecialEffects.PuzzleEffectCommand.PuzzleEffectConstructor 
      public void PuzzleEffectConstructorExample() 
      { 
         // Load an image 
         RasterCodecs.Startup(); 
         RasterCodecs codecs = new RasterCodecs(); 
         codecs.ThrowExceptionsOnInvalidImages = true; 
 
         RasterImage image = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg"); 
 
         // Prepare the command 
         PuzzleEffectCommand command = new PuzzleEffectCommand(16, 16, 0, PuzzleEffectCommandFlags.Border | PuzzleEffectCommandFlags.Shuffle | PuzzleEffectCommandFlags.Size | PuzzleEffectCommandFlags.Resize, new RasterColor(0,0,0)); 
         // Apply Puzzle Effect to this image. 
         command.Run(image); 
         codecs.Save(image, @"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Result.jpg", RasterImageFormat.Jpeg, 24); 
 
         RasterCodecs.Shutdown(); 
      }

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also