Class MakerNote

Class MakerNote

Nome do espaço: Aspose.Imaging.Exif Assembleia: Aspose.Imaging.dll (25.4.0)

Representa um único registro do Maker Note.

[JsonObject(MemberSerialization.OptIn)]
public class MakerNote

Inheritance

object MakerNote

Membros herdados

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

Examples

Acessar as notas do fabricante de câmera em imagem 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

Obtenha o nome de instalação.

[JsonProperty]
public string Name { get; }

Valor da propriedade

string

Value

Obtenha o valor de configuração.

[JsonProperty]
public string Value { get; }

Valor da propriedade

string

Methods

ToString()

Converte a instância em string.

public override string ToString()

Returns

string

Um sistema.String que representa essa instância.

 Português