MakerNote 类
Summary: Represents a single Maker Note record.
Module: aspose.imaging.exif
Full Name: aspose.imaging.exif.MakerNote
Properties
| Name | Type | Access | 描述 |
|---|---|---|---|
| 名称 | string | r | 获取设置名称。 |
| value | string | r | 获取设置值。 |
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}")