Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GcBitmap Class / Clone Method / Clone(Boolean,Boolean) Method
Specifies whether the Exif metadata should be cloned (if exist), not just copied as a reference.
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 resulting GcBitmap remain uninitialized.

In This Topic
    Clone(Boolean,Boolean) Method
    In This Topic
    Creates a new GcBitmap with a copy of the image.
    Syntax
    'Declaration
     
    Public Overloads Function Clone( _
       Optional ByVal cloneExif As System.Boolean, _
       Optional ByVal metadataOnly As System.Boolean _
    ) As GcBitmap
    public GcBitmap Clone( 
       System.bool cloneExif,
       System.bool metadataOnly
    )

    Parameters

    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 resulting GcBitmap remain uninitialized.
    See Also