LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

DotRemoveCommandFlags Enumeration

Show in webframe







Flags that determine the behavior of the dot removal process.

Syntax
'Declaration
 
<FlagsAttribute()>
Public Enum DotRemoveCommandFlags 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
'Usage
 
Dim instance As DotRemoveCommandFlags
[FlagsAttribute()]
public enum DotRemoveCommandFlags : System.IComparableSystem.IConvertibleSystem.IFormattable  
enum LTDotRemoveCommandFlags
public enum DotRemoveCommandFlags
Leadtools.ImageProcessing.Core.DotRemoveCommandFlags = function() { };
Leadtools.ImageProcessing.Core.DotRemoveCommandFlags.prototype = {
None = 0x00000000, UseDpi = 0x00000001, SingleRegion = 0x00000002, LeadRegion = 0x00000004, CallBackRegion = 0x00000008, ImageUnchanged = 0x00000010, UseSize = 0x00000020, UseDiagonals = 0x00001000, };
[FlagsAttribute()]
public enum class DotRemoveCommandFlags : public System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
Members
ValueMemberDescription
0x00000000NoneNo flags.
0x00000001UseDpiThe unit of measure for all properties of the DotRemoveCommand is thousandths of an inch. Use the image's DPI to convert to pixels. This allows the processing of many images with different DPI. If this flag is not set, the unit of measure for all properties of the DotRemoveCommand is pixels.
0x00000002SingleRegionFor each dot encountered by DotRemoveCommand, if the DotRemoveCommandEventArgs.Status is set to RemoveStatus.Remove, the removed dot is added to an internal single region. If it is set to RemoveStatus.NoRemove, the dot is not added to the single region. When DotRemoveCommand returns, either DotRemoveCommand.ImageRegion or DotRemoveCommand.Region will reference a region that contains all the removed dots. If LeadRegion is also set, DotRemoveCommand.ImageRegion will be updated with a shallow copy of image that has a LEAD region that contains all the removed dots. If LeadRegion is not set, DotRemoveCommand.Region is updated with a LEADTOOLS Leadtools.RasterRegion that contains all the removed dots. When the region (either LEAD or Windows) is no longer needed, it must be disposed (either region allocated in DotRemoveCommand.ImageRegion or DotRemoveCommand.Region).
0x00000004LeadRegionWhen DotRemoveCommand returns, DotRemoveCommand.ImageRegion is updated with a shallow copy of the image that also contains a region with all the removed dots. This flag must be used in conjunction with SingleRegion.
0x00000008CallBackRegionThe DotRemoveCommandEventArgs.Region property is updated with a LEADTOOLS Leadtools.RasterRegion that contains the current dot to be removed. Setting this flag lets the user create his or her own composite of removed dots by combining the regions received, if DotRemoveCommandEventArgs.Status is set to RemoveStatus.Remove. The regions can be combined using a logical OR operator. Combining all regions received when the DotRemoveCommandEventArgs.Status is set to RemoveStatus.Remove results in a region identical to the region created when SingleRegion is set in DotRemoveCommand.Flags. For an example, refer to DotRemoveCommand. When the region received by the DotRemoveCommandEventArgs.Region property is no longer needed, it must be released.
0x00000010ImageUnchangedThe resulting image is unchanged.
0x00000020UseSizeUse the DotRemoveCommand.MinimumDotWidth, DotRemoveCommand.MinimumDotHeight, DotRemoveCommand.MaximumDotWidth, DotRemoveCommand.MaximumDotHeight properties of the DotRemoveCommand to indicate the size of the dots to remove. If this flag is not set, default values for the four sizes will be used. These defaults are as follows: DotRemoveCommand.MinimumDotWidth = 1, DotRemoveCommand.MinimumDotHeight = 1, DotRemoveCommand.MaximumDotWidth = 2, DotRemoveCommand.MaximumDotHeight= 2.
0x00001000UseDiagonalsConsiders pixels that are diagonal as part of the dot. Consider the "speck" below consisting of nine pixels.


If this flag is used, this speck is considered a single dot that is 5x5 pixels. If this flag is not used, the speck is considered three dots (2x2, 1x1, 2x2).
Remarks
You can use a bitwise OR (|) to specify one or more flags.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.DotRemoveCommandFlags

Requirements

Target Platforms

See Also

Reference

Leadtools.ImageProcessing.Core Namespace

 

 


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