Combines two images, superimposing one image on another image that is used like a canvas. This command is available in the Imaging Pro and above toolkits.
public class CanvasCommand : RasterCommand
Public Class CanvasCommand
Inherits RasterCommand
public ref class CanvasCommand : public RasterCommand
As an example, if you use the following figure:
And you use the following figure as the canvas image:
And you call CanvasCommand using the following values:
Parameter | Value |
Transparency | 90 |
Emboss | 117 |
XOffset | 0 |
YOffset | 0 |
Flags | CanvasCommandFlags.TileShift |
TilesOffset | 0 |
The following figure results:
In the following figure the rafting image has been combined with the canvas image using the same values, except that the CanvasCommandFlags.TileFit flag is used and so instead of tiling the canvas image has been stretched to fit the dimensions of the rafting image:
Other commands that allow you to combine images include:
BumpCommand
CombineCommand
CombineWrapCommand
TextureAlphaBlendCommand
UnderlayCommand
For more information on this and other commands that can be used to combine images, Refer to Introduction to Image Processing With LEADTOOLS.
This command supports 12-bit and 16-bit grayscale and 48-bit and 64-bit color images. Support for 12-bit and 16-bit grayscale and 48-bit and 64-bit color images is available only in the Document/Medical toolkits.
For more information Refer to Applying Artistic Effects.
This procedure run a CanvasCommand of the image using canvasImage.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void CanvasCommandExample()
{
// 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();
canvasCommand.CanvasImage = canvasImage;
canvasCommand.Emboss = 100;
canvasCommand.Transparency = 100;
canvasCommand.XOffset = 10;
canvasCommand.YOffset = 10;
canvasCommand.TileOffset = 20;
canvasCommand.Flags = CanvasCommandFlags.TileShift;
// 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
Public Sub CanvasCommandExample()
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
canvasCommand.CanvasImage = canvasImage
canvasCommand.Emboss = 100
canvasCommand.Transparency = 100
canvasCommand.XOffset = 10
canvasCommand.YOffset = 10
canvasCommand.TileOffset = 20
canvasCommand.Flags = CanvasCommandFlags.TileShift
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
Leadtools.ImageProcessing.SpecialEffects Namespace
Leadtools.ImageProcessing.Effects.EmbossCommand
Leadtools.ImageProcessing.Color.ChangeHueSaturationIntensityCommand
ColoredPencilExtendedCommand Class
Leadtools.ImageProcessing.Color.ColorReplaceCommand
Leadtools.ImageProcessing.Color.ColorThresholdCommand
Leadtools.ImageProcessing.Effects.CombineCommand
Leadtools.ImageProcessing.CombineWarpCommand
Leadtools.ImageProcessing.Core.DiscreteFourierTransformCommand
Leadtools.ImageProcessing.Effects.DirectionEdgeStatisticalCommand
Leadtools.ImageProcessing.Core.FastFourierTransformCommand
Leadtools.ImageProcessing.Core.FrequencyFilterCommand
Leadtools.ImageProcessing.Core.FrequencyFilterMaskCommand
Leadtools.ImageProcessing.Core.FourierTransformDisplayCommand
Leadtools.ImageProcessing.Effects.StatisticsInformationCommand
Leadtools.ImageProcessing.Effects.FeretsDiameterCommand
Leadtools.ImageProcessing.Effects.ObjectInformationCommand
Leadtools.ImageProcessing.Effects.RegionContourPointsCommand
Leadtools.ImageProcessing.Color.MathematicalFunctionCommand
Leadtools.ImageProcessing.Color.SegmentCommand
Leadtools.ImageProcessing.Core.SubtractBackgroundCommand
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document