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
value
objectThe value of this exif value.
Returns
- bool
A value indicating whether the value could be set.