Skip to content

Commit

Permalink
Merge pull request #1069 from SixLabors/js/fix-exif
Browse files Browse the repository at this point in the history
EXIF - Post review fixes
  • Loading branch information
brianpopow committed Jan 6, 2020
2 parents 819e20c + 4b5dd61 commit a41ba70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Expand Up @@ -9,32 +9,32 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif
public abstract partial class ExifTag
{
/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the ShutterSpeedValue exif tag.
/// </summary>
public static ExifTag<SignedRational> ShutterSpeedValue { get; } = new ExifTag<SignedRational>(ExifTagValue.ShutterSpeedValue);

/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the BrightnessValue exif tag.
/// </summary>
public static ExifTag<SignedRational> BrightnessValue { get; } = new ExifTag<SignedRational>(ExifTagValue.BrightnessValue);

/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the ExposureBiasValue exif tag.
/// </summary>
public static ExifTag<SignedRational> ExposureBiasValue { get; } = new ExifTag<SignedRational>(ExifTagValue.ExposureBiasValue);

/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the AmbientTemperature exif tag.
/// </summary>
public static ExifTag<SignedRational> AmbientTemperature { get; } = new ExifTag<SignedRational>(ExifTagValue.AmbientTemperature);

/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the WaterDepth exif tag.
/// </summary>
public static ExifTag<SignedRational> WaterDepth { get; } = new ExifTag<SignedRational>(ExifTagValue.WaterDepth);

/// <summary>
/// Gets the ClipPath exif tag.
/// Gets the CameraElevationAngle exif tag.
/// </summary>
public static ExifTag<SignedRational> CameraElevationAngle { get; } = new ExifTag<SignedRational>(ExifTagValue.CameraElevationAngle);
}
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs
Expand Up @@ -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);
Expand Down

0 comments on commit a41ba70

Please sign in to comment.