Initializes a new CanvasCommand class object with explicit parameters.
public CanvasCommand(
RasterImage canvasImage,
int transparency,
int emboss,
int xOffset,
int yOffset,
int tileOffset,
CanvasCommandFlags flags
)
Public Function New( _
ByVal canvasImage As Leadtools.RasterImage, _
ByVal transparency As Integer, _
ByVal emboss As Integer, _
ByVal xOffset As Integer, _
ByVal yOffset As Integer, _
ByVal tileOffset As Integer, _
ByVal flags As Leadtools.Imageprocessing.Specialeffects.CanvasCommandFlags _
)
public CanvasCommand(
Leadtools.RasterImage canvasImage,
int transparency,
int emboss,
int xOffset,
int yOffset,
int tileOffset,
Leadtools.Imageprocessing.Specialeffects.CanvasCommandFlags flags
)
function CanvasCommand(
canvasImage ,
transparency ,
emboss ,
xOffset ,
yOffset ,
tileOffset ,
flags
)
public:
CanvasCommand(
Leadtools.RasterImage^ canvasImage,
int transparency,
int emboss,
int xOffset,
int yOffset,
int tileOffset,
Leadtools.Imageprocessing.Specialeffects.CanvasCommandFlags flags
)
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 identify how to distribute the canvas image with respect to the image and how to handle resizing.
This procedure run a CanvasCommand of the image using canvasImage.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void CanvasConstructorExample_S2()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg"));
RasterImage canvasImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "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, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.SpecialEffects
Leadtools.Examples.Support.SetLicense()
Public Sub CanvasConstructorExample_S2()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg"))
Dim canvasImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "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, 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
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET