ImageExtensionsDrawInto(Image, Bitmap, Rectangle, Rectangle, ScalingMode) Method
Draws the
source Image into the
target Bitmap with possible scaling.
This method is similar to
Graphics.DrawImage
methods, except that this one works between any pair of source and target
PixelFormats and supports quantizing.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 8.1.0
public static void DrawInto(
this Image source,
Bitmap target,
Rectangle sourceRectangle,
Rectangle targetRectangle,
ScalingMode scalingMode
)
<ExtensionAttribute>
Public Shared Sub DrawInto (
source As Image,
target As Bitmap,
sourceRectangle As Rectangle,
targetRectangle As Rectangle,
scalingMode As ScalingMode
)
public:
[ExtensionAttribute]
static void DrawInto(
Image^ source,
Bitmap^ target,
Rectangle sourceRectangle,
Rectangle targetRectangle,
ScalingMode scalingMode
)
[<ExtensionAttribute>]
static member DrawInto :
source : Image *
target : Bitmap *
sourceRectangle : Rectangle *
targetRectangle : Rectangle *
scalingMode : ScalingMode -> unit
- source Image
- The source Image to be drawn into the target.
- target Bitmap
- The target Bitmap into which source should be drawn.
- sourceRectangle Rectangle
- A Rectangle that specifies the portion of the source to be drawn into the target.
- targetRectangle Rectangle
- A Rectangle that specifies the location and size of the drawn source.
- scalingMode ScalingMode
- Specifies the scaling mode if the bitmap data to be drawn needs to be resized.
In Visual Basic and C#, you can call this method as an instance method on any object of type
Image. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
The method has the best performance if sourceRectangle and targetRectangle have the same size, or when scalingMode is NoScaling.
The image to be drawn is automatically clipped if sourceRectangle or targetRectangle exceed bounds, or scalingMode is NoScaling
and sourceRectangle and targetRectangle are different.
If target can represent a narrower set of colors, then the result will be automatically quantized to the colors of the target.