Interface IExifValue
A value of the exif profile.
Inherited Members
Namespace: SixLabors.ImageSharp.Metadata.Profiles.Exif
Assembly: SixLabors.ImageSharp.dll
Syntax
public interface IExifValue : IDeepCloneable<IExifValue>
Properties
| Improve this Doc View SourceDataType
Gets the data type of the exif value.
Declaration
ExifDataType DataType { get; }
Property Value
Type | Description |
---|---|
ExifDataType |
IsArray
Gets a value indicating whether the value is an array.
Declaration
bool IsArray { get; }
Property Value
Type | Description |
---|---|
Boolean |
Tag
Gets the tag of the exif value.
Declaration
ExifTag Tag { get; }
Property Value
Type | Description |
---|---|
ExifTag |
Methods
| Improve this Doc View SourceGetValue()
Gets the value of this exif value.
Declaration
object GetValue()
Returns
Type | Description |
---|---|
Object | The value of this exif value. |
TrySetValue(Object)
Sets the value of this exif value.
Declaration
bool TrySetValue(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | The value of this exif value. |
Returns
Type | Description |
---|---|
Boolean | A value indicating whether the value could be set. |