Draws current bitmap on another bitmap.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub Draw ( _ destinationBitmap As Bitmap, _ destinationX As Single, _ destinationY As Single, _ destinationWidth As Single, _ destinationHeight As Single, _ sourceX As Single, _ sourceY As Single, _ sourceWidth As Single, _ sourceHeight As Single, _ combine As CombineMode, _ opacity As Single, _ interpolationMode As InterpolationMode _ )
public void Draw( Bitmap destinationBitmap, float destinationX, float destinationY, float destinationWidth, float destinationHeight, float sourceX, float sourceY, float sourceWidth, float sourceHeight, CombineMode combine, float opacity, InterpolationMode interpolationMode )
Type: System.Single
Horizontal position of left-top corner of the destination rectangle.Type: System.Single
Vertical position of left-top corner of the destination rectangle.Type: System.Single
Width of the destination rectangle. You can pass 0 to indicate that method should calculate width automatically (see Remarks section for details).Type: System.Single
Height of the destination rectangle. You can pass 0 to indicate that method should calculate height automatically (see Remarks section for details).Type: System.Single
Horizontal position of left-top corner of the source rectangle.Type: System.Single
Vertical position of left-top corner of the source rectangle.Type: System.Single
Width of the source rectangle. You can pass 0 to indicate that method should calculate width automatically (see Remarks section for details).Type: System.Single
Height of the source rectangle. You can pass 0 to indicate that method should calculate height automatically (see Remarks section for details).Type: System.Single
A number in range [0, 1] specifying total opacity of the image. If 0, image is completely transparent, if 1, image is completely opaque.Pixels from source rectangle of current bitmap are drawn to destination rectangle on the target bitmap. If source rectangle dimensions differ from dimensions of destination rectangle, pixels are resized to have the same size as destination rectangle.
If pixel formats of bitmaps are different, the method may fail (for some pairs of pixel formats). So it is recommended to make sure that current bitmap pixel format is compatible with target bitmap (or, ideally, the same).
If you want method to calculate width and height automatically, you can pass 0 to these arguments. It will be calculated with the following way:
All coordinates are measured in units specified with Unit property of the source bitmap.