Class MakerNote

Class MakerNote

Il nome: Aspose.Imaging.Exif Assemblea: Aspose.Imaging.dll (25.4.0)

Si tratta di un singolo record Maker Note.

[JsonObject(MemberSerialization.OptIn)]
public class MakerNote

Inheritance

object MakerNote

I membri ereditari

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

Examples

Il produttore di fotocamere di accesso nota in immagine 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

Ottieni il nome del set.

[JsonProperty]
public string Name { get; }

Valore di proprietà

string

Value

Riceve il valore di impostazione.

[JsonProperty]
public string Value { get; }

Valore di proprietà

string

Methods

ToString()

Convertire l’indice in string.

public override string ToString()

Returns

string

Un sistema.String che rappresenta questa instanza.

 Italiano