Class MakerNote
Class MakerNote
Nazwa przestrzeń: Aspose.Imaging.Exif Zgromadzenie: Aspose.Imaging.dll (25.4.0)
Przedstawia jeden rekord Maker Note.
[JsonObject(MemberSerialization.OptIn)]
public class MakerNote
Inheritance
Dziedziczeni członkowie
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Dostęp do notatek producenta kamery w obrazie JPEG.
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
Otrzymuje nazwę ustawień.
[JsonProperty]
public string Name { get; }
Wartość nieruchomości
Value
Otrzymuje wartość ustawienia.
[JsonProperty]
public string Value { get; }
Wartość nieruchomości
Methods
ToString()
Konwertuj instancję na strumień.
public override string ToString()
Returns
System.String, który reprezentuje tę instancję.