Interface IExifValue
- Namespace
- SixLabors.ImageSharp.Metadata.Profiles.Exif
- Assembly
- SixLabors.ImageSharp.dll
A value of the Exif profile.
public interface IExifValue : IDeepCloneable<IExifValue>
- Inherited Members
Properties
DataType
Gets the data type of the Exif value.
ExifDataType DataType { get; }
Property Value
IsArray
Gets a value indicating whether the value is an array.
bool IsArray { get; }
Property Value
Tag
Gets the tag of the Exif value.
ExifTag Tag { get; }
Property Value
Methods
GetValue()
Gets the value of this Exif value.
object? GetValue()
Returns
- object
The value of this Exif value.
TrySetValue(object?)
Sets the value of this Exif value.
bool TrySetValue(object? value)
Parameters
valueobjectThe value of this Exif value.
Returns
- bool
A value indicating whether the value could be set.