Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
CopyMetadataTo Method
See Also 
Leadtools Namespace > RasterImage Class : CopyMetadataTo Method




image
Destination image
flags
Type of metadata to copy
Copies the metadata (tags, comments, and markers) to the given image.

Syntax

Visual Basic (Declaration) 
Public Sub CopyMetadataTo( _
   ByVal image As RasterImage, _
   ByVal flags As RasterMetadataFlags _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim image As RasterImage
Dim flags As RasterMetadataFlags
 
instance.CopyMetadataTo(image, flags)
C# 
public void CopyMetadataTo( 
   RasterImage image,
   RasterMetadataFlags flags
)
Managed Extensions for C++ 
public: void CopyMetadataTo( 
   RasterImage* image,
   RasterMetadataFlags flags
) 
C++/CLI 
public:
void CopyMetadataTo( 
   RasterImage^ image,
   RasterMetadataFlags flags
) 

Parameters

image
Destination image
flags
Type of metadata to copy

Remarks

This methods copies the metadata found in the Tags, Comments and/or Markers collections of this RasterImage to image.

Before the copy operation, this method will clear any metadata already found in image.

For more information on GeoKeys, refer to Implementing GeoKeys (GeoTIFF tags).

For more information, refer to Non Image Data.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also