MakerNote Class

Summary: Represents a single Maker Note record.

Module: aspose.imaging.exif

Full Name: aspose.imaging.exif.MakerNote

Properties

NameTypeAccessDescription
namestringrGets the setting name.
valuestringrGets 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}")