Class MakerNote
Class MakerNote
Namespace: Aspose.Imaging.Exif
Assembly: Aspose.Imaging.dll (25.2.0)
Represents a single Maker Note record.
[JsonObject(MemberSerialization.OptIn)]
public class MakerNote
Inheritance
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Examples
Access camera manufacturer maker notes in Jpeg image.```csharp [C#]
using (var image = (JpegImage)Image.Load("Sample.jpg"))
{
foreach (var makerNote in image.ExifData.MakerNotes)
{
Console.WriteLine("Name = {0}, Value = {1}", makerNote.Name, makerNote.Value);
}
}
## Properties
### <a id="Aspose_Imaging_Exif_MakerNote_Name"></a> Name
Gets the setting name.
```csharp
[JsonProperty]
public string Name { get; }
Property Value
Value
Gets the setting value.
[JsonProperty]
public string Value { get; }
Property Value
Methods
ToString()
Converts the instance to string.
public override string ToString()
Returns
A System.String that represents this instance.