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





Inlite.ClearImageNet Namespace > ImageEditor Class > PasteBitmap Method : PasteBitmap(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
Paste Bitmap image to this image at offset
Syntax
'Declaration
 
Public Overloads Sub PasteBitmap( _
   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.PasteBitmap(bmp, left, top)
public void PasteBitmap( 
   System.Drawing.Bitmap bmp,
   System.int left,
   System.int top
)
public procedure PasteBitmap( 
    bmp: System.Drawing.Bitmap;
    left: System.Integer;
    top: System.Integer
); 
public function PasteBitmap( 
   bmp : System.Drawing.Bitmap,
   left : System.int,
   top : System.int
);
public:
void PasteBitmap( 
   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