Class MakerNote

Class MakerNote

Namespace: Aspose.Imaging.Exif
Assembly: Aspose.Imaging.dll (25.4.0)

Represents a single Maker Note record.

[JsonObject(MemberSerialization.OptIn)]
public class MakerNote

Inheritance

objectMakerNote

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.

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

Name

Gets the setting name.

[JsonProperty]
public string Name { get; }

Property Value

string

Value

Gets the setting value.

[JsonProperty]
public string Value { get; }

Property Value

string

Methods

ToString()

Converts the instance to string.

public override string ToString()

Returns

string

A System.String that represents this instance.