ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats Namespace / ImGearFileFormats Class / LoadDocumentMetadata Method / LoadDocumentMetadata(Stream) Method
Data stream containing an image.




In This Topic
    LoadDocumentMetadata(Stream) Method
    In This Topic
    Loads document metadata without decoding pixel data.
    Syntax
    'Declaration
     
    Public Overloads Shared Function LoadDocumentMetadata( _
       ByVal stream As Stream _
    ) As ImGearMetadataHead
    'Usage
     
    Dim stream As Stream
    Dim value As ImGearMetadataHead
     
    value = ImGearFileFormats.LoadDocumentMetadata(stream)
    public static ImGearMetadataHead LoadDocumentMetadata( 
       Stream stream
    )
    public: static ImGearMetadataHead* LoadDocumentMetadata( 
       Stream* stream
    ) 
    public:
    static ImGearMetadataHead^ LoadDocumentMetadata( 
       Stream^ stream
    ) 

    Parameters

    stream
    Data stream containing an image.

    Return Value

    Document metadata tree.
    Exceptions
    ExceptionDescription
    Thrown if the specified stream is null.
    Remarks
    This method reads the specified image stream from the current position and loads the metadata associated with a document. This method does not load the metadata assotiated with individual pages. This method does not decode the actual pixel data.
    See Also