Browse Source
Merge pull request #1069 from SixLabors/js/fix-exif
EXIF - Post review fixes
af/merge-core
Brian Popow
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
7 deletions
-
src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.SignedRational.cs
-
src/ImageSharp/Metadata/Profiles/Exif/Values/ExifValues.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); |
|
|
|
} |
|
|
|
|
|
|
|
@ -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); |
|
|
|
|