|
ImageClone Method (Bitmap)
|
Clone image.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public static Bitmap Clone(
this Bitmap source
)
<ExtensionAttribute>
Public Shared Function Clone (
source As Bitmap
) As Bitmap
Request Example
View SourceParameters
- source
- Type: System.DrawingBitmap
Source image.
Return Value
Type:
BitmapReturn clone of the source image.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Bitmap. 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).
Remarks The original Bitmap.Clone()
does not produce the desired result - it does not create an actual clone (it does not create a copy
of the image). That is why this method was implemented to provide the functionality.
See Also