|
ImageClone Method (Byte)
|
Clone image.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public static Bitmap Clone(
this byte[] bytes
)
<ExtensionAttribute>
Public Shared Function Clone (
bytes As Byte()
) As Bitmap
Request Example
View SourceParameters
- bytes
- Type: SystemByte
Source image as an array of bytes.
Return Value
Type:
BitmapReturns clone of the source image with specified pixel format.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . 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 a clone with specified pixel format.
More of it, the original method 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