Gets or sets the manufacturer of the recording equipment. This is the manufacturer of the DSC, scanner, video digitizer or other equipment that generated the image.
Gets or sets the model name or model number of the equipment. This is the model name or number of the DSC, scanner, video digitizer or other equipment that generated the image.
Sets known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well. This method is a combination of AddProperties and UpdateProperties. If an existing property satisfies the predicate its value is updated. If there is a known property missing in the package that satisfies the predicate it is added to the package.
This code sample demonstrates how to update common EXIF properties.
using(Metadatametadata=newMetadata(Constants.InputJpeg)){IExifroot=metadata.GetRootPackage()asIExif;if(root!=null){// Set the EXIF package if it's missingif(root.ExifPackage==null){root.ExifPackage=newExifPackage();}root.ExifPackage.Copyright="Copyright (C) 2011-2026 GroupDocs. All Rights Reserved.";root.ExifPackage.ImageDescription="test image";root.ExifPackage.Software="GroupDocs.Metadata";// ...root.ExifPackage.ExifIfdPackage.BodySerialNumber="test";root.ExifPackage.ExifIfdPackage.CameraOwnerName="GroupDocs";root.ExifPackage.ExifIfdPackage.UserComment="test comment";// ...metadata.Save(Constants.OutputJpeg);}}