MakerNote Class
Summary: Represents a single Maker Note record.
Module: aspose.imaging.exif
Full Name: aspose.imaging.exif.MakerNote
Properties
| Name | Type | Access | Description |
|---|---|---|---|
| name | string | r | Gets the setting name. |
| value | string | r | Gets the setting value. |
Examples
Access camera manufacturer maker notes in Jpeg image.
from aspose.pycore import as_of
from aspose.imaging import Image
from aspose.imaging.fileformats.jpeg import JpegImage
with as_of(Image.load("Sample.jpg"), JpegImage) as image:
for makerNote in image.exif_data.maker_notes:
print(f"Name = {makerNote.name}, Value = {makerNote.value}")