Class MakerNote

Class MakerNote

Le nom : Aspose.Imaging.Exif Assemblée: Aspose.Imaging.dll (25.4.0)

Il représente un seul 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

Accès aux notes de fabricant de caméra dans l’image 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

Obtenez le nom de mise en place.

[JsonProperty]
public string Name { get; }

Valore di proprietà

string

Value

Obtenez la valeur de configuration.

[JsonProperty]
public string Value { get; }

Valore di proprietà

string

Methods

ToString()

Convertez l’instance en string.

public override string ToString()

Returns

string

Un sistema.String che rappresenta questa instanza.

 Français