ClearImage .NET API
XorBitmap(Bitmap,Int32,Int32) Method





Inlite.ClearImageNet Namespace > ImageEditor Class > XorBitmap Method : XorBitmap(Bitmap,Int32,Int32) Method
source Bitmap
x offset of the bitmap in respect to this image
y offset of the bitmap in respect to this image
XOR the working image with the specified Bitmap image with offset
Syntax
'Declaration
 
Public Overloads Sub XorBitmap( _
   ByVal bmp As System.Drawing.Bitmap, _
   ByVal left As System.Integer, _
   ByVal top As System.Integer _
) 
'Usage
 
Dim instance As ImageEditor
Dim bmp As System.Drawing.Bitmap
Dim left As System.Integer
Dim top As System.Integer
 
instance.XorBitmap(bmp, left, top)
public void XorBitmap( 
   System.Drawing.Bitmap bmp,
   System.int left,
   System.int top
)
public procedure XorBitmap( 
    bmp: System.Drawing.Bitmap;
    left: System.Integer;
    top: System.Integer
); 
public function XorBitmap( 
   bmp : System.Drawing.Bitmap,
   left : System.int,
   top : System.int
);
public:
void XorBitmap( 
   System.Drawing.Bitmap^ bmp,
   System.int left,
   System.int top
) 

Parameters

bmp
source Bitmap
left
x offset of the bitmap in respect to this image
top
y offset of the bitmap in respect to this image
Remarks

Pixels on object.Image are set to a result of logical operation between themselves and corresponding pixels of bmp located at left ant top offsets.

object.Bitmap.PixelFomat and bmp.PixelFomat  should be the same.

See Also

Reference

ImageEditor Class
ImageEditor Members
Overload List