Draws the specified Bitmap, using its original physical size, at the specified location.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public void DrawImage( Bitmap bitmap, Point point, CombineMode combine )
Type: Aurigma.GraphicsMill.Bitmap
The Bitmap to draw.Type: System.Drawing.Point
A Point structure that represents the location of the upper-left corner of the drawn image.The bitmap is drawn to the destination rectangle on this Graphics with dimensions equal to the dimensions of the bitmap.
If the bitmap has pixel format which is not GDI-compatible (e.g. extended pixel formats, CMYK, etc) method will automatically create a copy converted to the Format32bppArgb. That's why you always get it drawn, but if you are going to call this method multiple times, it is recommended to convert the bitmap to some GDI-compatible format (like Format32bppArgb) to increase the performance.