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




canvasImage
References the canvas image.
transparency
The transparency amount between the image and the canvas. Valid range is from 0 to 100. When set to 0, only the canvas image displays, and when set to 100, the canvas image is barely visible.
emboss
Apparent depth of the canvas image. Valid range is from 0 to 200. When Transparency is at 100, and Emboss is 0 only the image displays. Increasing Emboss increases the apparent depth of the canvas image.
xOffset
The X distance between the canvas origin point and the image origin point (in pixels). Valid range is from -Canvas image width to +Canvas image width.
yOffset
The Y distance between the canvas origin point and the image origin point (in pixels). Valid range is from -Canvas image height to +Canvas image height.
tileOffset
The amount to shift every row of the canvas image from the origin. This parameter is not used when Flags is set to CanvasCommandFlags.TileFit.
flags
Flags that identifiy how to distribute the canvas image with respect to the image and how to handle resizing.
Initializes a new CanvasCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal canvasImage As RasterImage, _
   ByVal transparency As Integer, _
   ByVal emboss As Integer, _
   ByVal xOffset As Integer, _
   ByVal yOffset As Integer, _
   ByVal tileOffset As Integer, _
   ByVal flags As CanvasCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim canvasImage As RasterImage
Dim transparency As Integer
Dim emboss As Integer
Dim xOffset As Integer
Dim yOffset As Integer
Dim tileOffset As Integer
Dim flags As CanvasCommandFlags
 
Dim instance As CanvasCommand(canvasImage, transparency, emboss, xOffset, yOffset, tileOffset, flags)
C# 
public CanvasCommand( 
   RasterImage canvasImage,
   int transparency,
   int emboss,
   int xOffset,
   int yOffset,
   int tileOffset,
   CanvasCommandFlags flags
)
Managed Extensions for C++ 
public: CanvasCommand( 
   RasterImage canvasImage,
   int transparency,
   int emboss,
   int xOffset,
   int yOffset,
   int tileOffset,
   CanvasCommandFlags flags
)
C++/CLI 
public:
CanvasCommand( 
   RasterImage canvasImage,
   int transparency,
   int emboss,
   int xOffset,
   int yOffset,
   int tileOffset,
   CanvasCommandFlags flags
)

Parameters

canvasImage
References the canvas image.
transparency
The transparency amount between the image and the canvas. Valid range is from 0 to 100. When set to 0, only the canvas image displays, and when set to 100, the canvas image is barely visible.
emboss
Apparent depth of the canvas image. Valid range is from 0 to 200. When Transparency is at 100, and Emboss is 0 only the image displays. Increasing Emboss increases the apparent depth of the canvas image.
xOffset
The X distance between the canvas origin point and the image origin point (in pixels). Valid range is from -Canvas image width to +Canvas image width.
yOffset
The Y distance between the canvas origin point and the image origin point (in pixels). Valid range is from -Canvas image height to +Canvas image height.
tileOffset
The amount to shift every row of the canvas image from the origin. This parameter is not used when Flags is set to CanvasCommandFlags.TileFit.
flags
Flags that identifiy how to distribute the canvas image with respect to the image and how to handle resizing.

Example

Visual BasicCopy Code
ImageProcessing.SpecialEffects.CanvasCommand.CanvasConstructor_S2
   Public Sub CanvasConstructorExample_S2()
      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")
      Dim canvasImage As RasterImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ULAY1.BMP")

      ' Prepare the command
      Dim canvasCommand As CanvasCommand = New CanvasCommand(canvasImage, 100, 100, 10, 10, 20, CanvasCommandFlags.TileFit)
      canvasCommand.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.CanvasCommand.CanvasConstructor_S2 
      public void CanvasConstructorExample_S2() 
      { 
         // 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"); 
         RasterImage canvasImage = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ULAY1.BMP"); 
 
         // Prepaire the command 
         CanvasCommand canvasCommand = new CanvasCommand(canvasImage, 100, 100, 10, 10, 20, CanvasCommandFlags.TileFit); 
 
         // Apply the command. 
         canvasCommand.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