ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataHead Class / EXIF Property




In This Topic
    EXIF Property (ImGearMetadataHead)
    In This Topic
    Gets or sets simplified access to EXIF metadata.
    Syntax
    'Declaration
     
    Public Property EXIF As ImGearFormatMetadata
    'Usage
     
    Dim instance As ImGearMetadataHead
    Dim value As ImGearFormatMetadata
     
    instance.EXIF = value
     
    value = instance.EXIF
    public ImGearFormatMetadata EXIF {get; set;}
    public: __property ImGearFormatMetadata* get_EXIF();
    public: __property void set_EXIF( 
       ImGearFormatMetadata* value
    );
    public:
    property ImGearFormatMetadata^ EXIF {
       ImGearFormatMetadata^ get();
       void set (    ImGearFormatMetadata^ value);
    }

    Property Value

    ImageGear.Formats.EXIF.ImGearEXIFMetadata class object.
    Remarks
    The user does not need to know exact location of EXIF metadata in the metadata tree. If EXIF metadata doesn't exist in the metadata tree, the property returns null.

    You can add EXIF metadata to a metadata tree, if it was not present, by creating a new instance of ImageGear.Formats.EXIF.ImGearEXIFMetadata class and assigning it to the EXIF property. However, this only allowed if metadata tree's target format is compatible with EXIF. Currently, two target formats support EXIF metadata: TIFF and JPEG.

    See Also