Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
CombineFastCommand Class
See Also  Members  
Leadtools.ImageProcessing Namespace : CombineFastCommand Class




Combines image data from two images (source and destination), letting you specify the areas to be combined, the operations to be performed when combining the data, and which color planes (R or G or B or R, G, and B) are used.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class CombineFastCommand 
   Inherits RasterCommand
   Implements IRasterCommand 
Visual Basic (Usage)Copy Code
Dim instance As CombineFastCommand
C# 
public class CombineFastCommand : RasterCommand, IRasterCommand  
Managed Extensions for C++ 
public __gc class CombineFastCommand : public RasterCommand, IRasterCommand  
C++/CLI 
public ref class CombineFastCommand : public RasterCommand, IRasterCommand  

Example

This example loads two images and combines them using an "AND" operation.

Remarks

For example, suppose you use SpatialFilterCommand class to apply an edge detection filter. You can then use this class to combine the resulting image with the original one to produce an image with hard edges.

The combine fast command works by combining the image in the DestinationImage property with the image passed to the RasterCommand.Run method. The DestinationImage will then hold the result of the combine operation..

For more information, refer to Processing an Image.

Inheritance Hierarchy

System.Object
   Leadtools.ImageProcessing.RasterCommand
      Leadtools.ImageProcessing.CombineFastCommand

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