Skip to content

Commit a5ab02c

Browse files
Merge branch 'master' into js/custom-configuration-fix-650
2 parents d7eeb2f + a41ba70 commit a5ab02c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif
99
public abstract partial class ExifTag
1010
{
1111
/// <summary>
12-
/// Gets the ClipPath exif tag.
12+
/// Gets the ShutterSpeedValue exif tag.
1313
/// </summary>
1414
public static ExifTag<SignedRational> ShutterSpeedValue { get; } = new ExifTag<SignedRational>(ExifTagValue.ShutterSpeedValue);
1515

1616
/// <summary>
17-
/// Gets the ClipPath exif tag.
17+
/// Gets the BrightnessValue exif tag.
1818
/// </summary>
1919
public static ExifTag<SignedRational> BrightnessValue { get; } = new ExifTag<SignedRational>(ExifTagValue.BrightnessValue);
2020

2121
/// <summary>
22-
/// Gets the ClipPath exif tag.
22+
/// Gets the ExposureBiasValue exif tag.
2323
/// </summary>
2424
public static ExifTag<SignedRational> ExposureBiasValue { get; } = new ExifTag<SignedRational>(ExifTagValue.ExposureBiasValue);
2525

2626
/// <summary>
27-
/// Gets the ClipPath exif tag.
27+
/// Gets the AmbientTemperature exif tag.
2828
/// </summary>
2929
public static ExifTag<SignedRational> AmbientTemperature { get; } = new ExifTag<SignedRational>(ExifTagValue.AmbientTemperature);
3030

3131
/// <summary>
32-
/// Gets the ClipPath exif tag.
32+
/// Gets the WaterDepth exif tag.
3333
/// </summary>
3434
public static ExifTag<SignedRational> WaterDepth { get; } = new ExifTag<SignedRational>(ExifTagValue.WaterDepth);
3535

3636
/// <summary>
37-
/// Gets the ClipPath exif tag.
37+
/// Gets the CameraElevationAngle exif tag.
3838
/// </summary>
3939
public static ExifTag<SignedRational> CameraElevationAngle { get; } = new ExifTag<SignedRational>(ExifTagValue.CameraElevationAngle);
4040
}

src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private static object CreateValue(ExifTagValue tag)
8080

8181
case ExifTagValue.FreeOffsets: return new ExifLongArray(ExifTag.FreeOffsets);
8282
case ExifTagValue.FreeByteCounts: return new ExifLongArray(ExifTag.FreeByteCounts);
83-
case ExifTagValue.ColorResponseUnit: return new ExifLongArray(ExifTag.TileOffsets);
83+
case ExifTagValue.ColorResponseUnit: return new ExifLongArray(ExifTag.ColorResponseUnit);
8484
case ExifTagValue.TileOffsets: return new ExifLongArray(ExifTag.TileOffsets);
8585
case ExifTagValue.SMinSampleValue: return new ExifLongArray(ExifTag.SMinSampleValue);
8686
case ExifTagValue.SMaxSampleValue: return new ExifLongArray(ExifTag.SMaxSampleValue);

0 commit comments

Comments
 (0)