Clone(GcBitmap,Boolean,Boolean) Method
In This Topic
Copies the image into an existing
GcBitmap.
Syntax
'Declaration
Public Overloads Sub Clone( _
ByVal As GcBitmap, _
Optional ByVal As System.Boolean, _
Optional ByVal As System.Boolean _
)
public void Clone(
GcBitmap ,
System.bool ,
System.bool
)
Parameters
- bmp
- The target GcBitmap object.
- cloneExif
- Specifies whether the Exif metadata should be cloned (if exist), not just copied as a reference.
- metadataOnly
- Specifies whether to copy the image metadata only, not actual pixel data. If false, the pixel data will be copied from the current GcBitmap. If true, the pixel data of the target GcBitmap remain uninitialized.
See Also