Class MakerNote

Class MakerNote

Nombre del espacio: Aspose.Imaging.Exif Asamblea: Aspose.Imaging.dll (25.4.0)

Representa un único registro de Maker Note.

[JsonObject(MemberSerialization.OptIn)]
public class MakerNote

Inheritance

object MakerNote

Miembros heredados

object.GetType() ,y, object.MemberwiseClone() ,y, object.ToString() ,y, object.Equals(object?) ,y, object.Equals(object?, object?) ,y, object.ReferenceEquals(object?, object?) ,y, object.GetHashCode()

Examples

Acceso a las notas del fabricante de la cámara en la imagen de 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

Obtenga el nombre de la configuración.

[JsonProperty]
public string Name { get; }

Valor de la propiedad

string

Value

Obtenga el valor de configuración.

[JsonProperty]
public string Value { get; }

Valor de la propiedad

string

Methods

ToString()

Converta la instancia en string.

public override string ToString()

Returns

string

Un sistema.String que representa esta instancia.

 Español