Browse Source

Merge branch 'master' into js/custom-configuration-fix-650

af/merge-core
James Jackson-South 6 years ago
parent
commit
1e70ff2596
  1. 12
      src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs
  2. 2
      src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.cs

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

@ -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);
}

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

@ -80,7 +80,7 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif
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);

Loading…
Cancel
Save