//For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
// initialize JpegFormat
JpegFormat JpegFormat = new JpegFormat(Common.MapSourceFilePath(filePath));
// get access to CameraRaw schema
var package = JpegFormat.XmpValues.Schemes.CameraRaw;
// update properties
package.AutoBrightness = true;
package.AutoContrast = true;
package.CropUnits = CropUnits.Pixels;
// update white balance
package.SetWhiteBalance(WhiteBalance.Auto);
// commit changes
JpegFormat.Save(Common.MapDestinationFilePath(filePath));