Leadtools.ImageProcessing.SpecialEffects Send comments on this topic.
RomanMosaicCommand Constructor(Int32,Int32,Int32,Int32,Int32,RasterColor,RomanMosaicCommandFlags)
See Also  Example
Leadtools.ImageProcessing.SpecialEffects Namespace > RomanMosaicCommand Class > RomanMosaicCommand Constructor : RomanMosaicCommand Constructor(Int32,Int32,Int32,Int32,Int32,RasterColor,RomanMosaicCommandFlags)




tileWidth
Value that indicates the width of the tile, in pixels. The meaning of the TileWidth property differs according to the flags that are set in the Flags property. Possible values are:
If Flags property contains: Then, TileWidth property contains:And the range of possible values for TileHeight property is:
RomanMosaicCommandFlags.RectangularThe width of each rectangular tile, in pixels.1 to the image width / 2, if there is no region. If there is a region, then the range of values is just the region width/2.
RomanMosaicCommandFlags.CircularThe radial length of each arc-shaped tile, in pixels1 to the half of the diagonal of the image, if there is no region. If there is a region, then the range of values is just the half of the diagonal of the region rectangle.
RomanMosaicCommandFlags.BothThe radial length of each arc-shaped tile, in pixels1 to the half of the diagonal of the image, if there is no region. If there is a region, then the range of values is just the half of the diagonal of the region rectangle.
tileHeight
Value that indicates the height of the tile. The meaning of the TileHeight property differs according to the flags that are set in the Flags property. Possible values are:
If Flags property contains: Then, TileHeight property contains:And the range of possible values for TileHeight property is:
RomanMosaicCommandFlags.RectangularThe height of each rectangular tile, in pixels.1 to the image height / 2, if there is no region. If there is a region, then the range of values is just the region height/2.
RomanMosaicCommandFlags.CircularWill be ignored.Will be ignored.
RomanMosaicCommandFlags.BothThe height of each rectangular tile, in pixels.1 to the image height / 2, if there is no region. If there is a region, then the range of values is just the region height/2.
border
Value that indicates the border width, in pixels. The valid range is from 1 to 15.
shadowAngle
Value indicates the direction of the light source that produces the shadow. This property is used if the RomanMosaicCommandFlags.ColoredShadow flag or the RomanMosaicCommandFlags.GrayShadow flag is set. Valid values are found in ShadowCommandAngle
shadowThresh
Value that determines which pixels will be affected by the shadow. Possible values range from 0 through 255. Pixel values less than the threshold value will be unaffected. This member will be used if the RomanMosaicCommandFlags.ColoredShadow flag or the RomanMosaicCommandFlags.GrayShadow flag is set.
color
Represents the value that specifies the fill color to be used in between the tiles.
flags
Enumeration contains all flags that are needed by the RomanMosaicCommand. It is indicate the values used to select the shape of the tiles and the type of shadow.
Initializes a new RomanMosaicCommand with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal tileWidth As Integer, _
   ByVal tileHeight As Integer, _
   ByVal border As Integer, _
   ByVal shadowAngle As Integer, _
   ByVal shadowThresh As Integer, _
   ByVal color As RasterColor, _
   ByVal flags As RomanMosaicCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim tileWidth As Integer
Dim tileHeight As Integer
Dim border As Integer
Dim shadowAngle As Integer
Dim shadowThresh As Integer
Dim color As RasterColor
Dim flags As RomanMosaicCommandFlags
 
Dim instance As RomanMosaicCommand(tileWidth, tileHeight, border, shadowAngle, shadowThresh, color, flags)
C# 
public RomanMosaicCommand( 
   int tileWidth,
   int tileHeight,
   int border,
   int shadowAngle,
   int shadowThresh,
   RasterColor color,
   RomanMosaicCommandFlags flags
)
Managed Extensions for C++ 
public: RomanMosaicCommand( 
   int tileWidth,
   int tileHeight,
   int border,
   int shadowAngle,
   int shadowThresh,
   RasterColor color,
   RomanMosaicCommandFlags flags
)
C++/CLI 
public:
RomanMosaicCommand( 
   int tileWidth,
   int tileHeight,
   int border,
   int shadowAngle,
   int shadowThresh,
   RasterColor color,
   RomanMosaicCommandFlags flags
)

Parameters

tileWidth
Value that indicates the width of the tile, in pixels. The meaning of the TileWidth property differs according to the flags that are set in the Flags property. Possible values are:
If Flags property contains: Then, TileWidth property contains:And the range of possible values for TileHeight property is:
RomanMosaicCommandFlags.RectangularThe width of each rectangular tile, in pixels.1 to the image width / 2, if there is no region. If there is a region, then the range of values is just the region width/2.
RomanMosaicCommandFlags.CircularThe radial length of each arc-shaped tile, in pixels1 to the half of the diagonal of the image, if there is no region. If there is a region, then the range of values is just the half of the diagonal of the region rectangle.
RomanMosaicCommandFlags.BothThe radial length of each arc-shaped tile, in pixels1 to the half of the diagonal of the image, if there is no region. If there is a region, then the range of values is just the half of the diagonal of the region rectangle.
tileHeight
Value that indicates the height of the tile. The meaning of the TileHeight property differs according to the flags that are set in the Flags property. Possible values are:
If Flags property contains: Then, TileHeight property contains:And the range of possible values for TileHeight property is:
RomanMosaicCommandFlags.RectangularThe height of each rectangular tile, in pixels.1 to the image height / 2, if there is no region. If there is a region, then the range of values is just the region height/2.
RomanMosaicCommandFlags.CircularWill be ignored.Will be ignored.
RomanMosaicCommandFlags.BothThe height of each rectangular tile, in pixels.1 to the image height / 2, if there is no region. If there is a region, then the range of values is just the region height/2.
border
Value that indicates the border width, in pixels. The valid range is from 1 to 15.
shadowAngle
Value indicates the direction of the light source that produces the shadow. This property is used if the RomanMosaicCommandFlags.ColoredShadow flag or the RomanMosaicCommandFlags.GrayShadow flag is set. Valid values are found in ShadowCommandAngle
shadowThresh
Value that determines which pixels will be affected by the shadow. Possible values range from 0 through 255. Pixel values less than the threshold value will be unaffected. This member will be used if the RomanMosaicCommandFlags.ColoredShadow flag or the RomanMosaicCommandFlags.GrayShadow flag is set.
color
Represents the value that specifies the fill color to be used in between the tiles.
flags
Enumeration contains all flags that are needed by the RomanMosaicCommand. It is indicate the values used to select the shape of the tiles and the type of shadow.

Example

Run the RomanMosiac command on an image.

Visual BasicCopy Code
Public Sub RomanMosiacConstructorExample()
   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 RomanMosaicCommand = New RomanMosaicCommand(15, 15, 5, ShadowCommandAngle.East, 50, New RasterColor(0, 0, 0), RomanMosaicCommandFlags.Rectangular Or RomanMosaicCommandFlags.GrayShadow)
   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
public void RomanMosiacConstructorExample() 

   // 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 
   RomanMosaicCommand command = new RomanMosaicCommand(15, 15, 5, ShadowCommandAngle.East, 50, new RasterColor(0,0,0), RomanMosaicCommandFlags.Rectangular | RomanMosaicCommandFlags.GrayShadow); 
   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