diff --git a/src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs b/src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs index 293ed72888..58a7134118 100644 --- a/src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs +++ b/src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs @@ -9,32 +9,32 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif public abstract partial class ExifTag { /// - /// Gets the ClipPath exif tag. + /// Gets the ShutterSpeedValue exif tag. /// public static ExifTag ShutterSpeedValue { get; } = new ExifTag(ExifTagValue.ShutterSpeedValue); /// - /// Gets the ClipPath exif tag. + /// Gets the BrightnessValue exif tag. /// public static ExifTag BrightnessValue { get; } = new ExifTag(ExifTagValue.BrightnessValue); /// - /// Gets the ClipPath exif tag. + /// Gets the ExposureBiasValue exif tag. /// public static ExifTag ExposureBiasValue { get; } = new ExifTag(ExifTagValue.ExposureBiasValue); /// - /// Gets the ClipPath exif tag. + /// Gets the AmbientTemperature exif tag. /// public static ExifTag AmbientTemperature { get; } = new ExifTag(ExifTagValue.AmbientTemperature); /// - /// Gets the ClipPath exif tag. + /// Gets the WaterDepth exif tag. /// public static ExifTag WaterDepth { get; } = new ExifTag(ExifTagValue.WaterDepth); /// - /// Gets the ClipPath exif tag. + /// Gets the CameraElevationAngle exif tag. /// public static ExifTag CameraElevationAngle { get; } = new ExifTag(ExifTagValue.CameraElevationAngle); } diff --git a/src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs b/src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs index 7b14ebc311..b183c4ec9f 100644 --- a/src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs +++ b/src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs @@ -80,7 +80,7 @@ private static object CreateValue(ExifTagValue tag) case ExifTagValue.FreeOffsets: return new ExifLongArray(ExifTag.FreeOffsets); case ExifTagValue.FreeByteCounts: return new ExifLongArray(ExifTag.FreeByteCounts); - case ExifTagValue.ColorResponseUnit: return new ExifLongArray(ExifTag.TileOffsets); + case ExifTagValue.ColorResponseUnit: return new ExifLongArray(ExifTag.ColorResponseUnit); case ExifTagValue.TileOffsets: return new ExifLongArray(ExifTag.TileOffsets); case ExifTagValue.SMinSampleValue: return new ExifLongArray(ExifTag.SMinSampleValue); case ExifTagValue.SMaxSampleValue: return new ExifLongArray(ExifTag.SMaxSampleValue);