LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

Combine Property

Show in webframe







Gets or sets a flag which tells how to color the output pixels.
Syntax
public bool Combine {get; set;}
'Declaration
 
Public Property Combine As Boolean
'Usage
 
Dim instance As SelectDataCommand
Dim value As Boolean
 
instance.Combine = value
 
value = instance.Combine
public bool Combine {get; set;}

            

            
 
get_Combine();
set_Combine(value);
Object.defineProperty('Combine');
public:
property bool Combine {
   bool get();
   void set (    bool value);
}

Property Value

A flag which tells how to color the output pixels:
  1. Pixels with values greater than or equal to the threshold value are set to Color (if Combine is set to false) or AND-ed with Color (if Combine is true). In this case, the source pixel is first converted to grayscale 24-bit and then AND-ed with Color.
  2. Pixels with values less than the threshold value are set to black (if Combine is set to false) or the RGB pixel value will be the same as the high byte source pixel value (if Combine is true). That is R = G = B = High byte values of the source pixel.
Example
Refer to SelectDataCommand.
Requirements

Target Platforms

See Also

Reference

SelectDataCommand Class
SelectDataCommand Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.