RasterRegionCombineMode Enumeration (original) (raw)

Summary

Controls the creation of an image region.

Syntax

C#

Objective-C

C++/CLI

Java

Python

public enum RasterRegionCombineMode 

typedef NS_ENUM(NSInteger, LTRasterRegionCombineMode) { LTRasterRegionCombineModeAnd = 0, LTRasterRegionCombineModeSet = 1, LTRasterRegionCombineModeAndNotImage = 2, LTRasterRegionCombineModeAndNotRegion = 3, LTRasterRegionCombineModeOr = 4, LTRasterRegionCombineModeXor = 5, LTRasterRegionCombineModeSetNot = 6 };

public final class RasterRegionCombineMode extends java.lang.Enum<RasterRegionCombineMode>

public enum class RasterRegionCombineMode   

class RasterRegionCombineMode(Enum): And = 0 Set = 1 AndNotImage = 2 AndNotRegion = 3 Or = 4 Xor = 5 SetNot = 6

Members

Value Member Description
0 And The resulting region includes only the intersection of the existing region and the new one. The following example shows the result, where the rectangles represent the existing region, the ellipse represents the new one, and the shaded area represents the resulting region. RasterRegionCombineMode And
1 Set The resulting region includes only the new region. The existing region, if any, is discarded. The following example shows the result, where the ellipse is the new region and the shaded area is the resulting region. RasterRegionCombineMode Set
2 AndNotImage The resulting region includes the intersection of the area outside the existing region and the area inside the new region. The following example shows the result, where the rectangle is the existing region, the ellipse is the new one, and the shaded area is the resulting region. RasterRegionCombineMode And Not Image
3 AndNotRegion The resulting region includes the intersection of the area inside the existing region and the area outside the new region. The following example shows the result, where the rectangle is the existing region, the ellipse is the new one, and the shaded area is the resulting region. RasterRegionCombineMode And Not Region
4 Or The resulting region includes the area inside the existing region and the area inside the new region. The following example shows the result, where the rectangle is the existing region, the ellipse is the new one, and the shaded area is the resulting region. RasterRegionCombineMode Or
5 Xor The resulting region includes the area inside the existing region and the area inside the new region, except for any areas where the two intersect. The following example shows the result, where the rectangle is the existing region, the ellipse is the new one, and the shaded area is the resulting region. RasterRegionCombineMode Xor
6 SetNot The resulting region includes everything in the image, except the new region. The existing region, if any, is discarded. The following example shows the result, where the ellipse is the new region and the shaded area is the resulting region. RasterRegionCombineMode Set Not

NOTE: Use LegacyEllipse to obtain ellipse regions compatible with older versions of LEADTOOLS (v18 and some old v19 DLLs).

Leadtools Assembly

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(byte[],int,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],int,int,int,RasterConvertBufferFlags) Method

Convert(IntPtr,int,int,int,RasterByteOrder,RasterByteOrder,RasterColor[],RasterColor[],RasterColor16[],RasterColor16[],int,int,int,RasterConvertBufferFlags) Method