diff --git a/src/ImageSharp/IO/EndianBitConverter.cs b/src/ImageSharp/IO/EndianBitConverter.cs index 0a53e1666..2ecf202d1 100644 --- a/src/ImageSharp/IO/EndianBitConverter.cs +++ b/src/ImageSharp/IO/EndianBitConverter.cs @@ -325,7 +325,7 @@ namespace ImageSharp.IO } #endregion - #region Decimal conversions + #region Decimal conversions /// /// Returns a decimal value converted from sixteen bytes /// at a specified position in a byte array. diff --git a/src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs b/src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs index 857f6ec01..90e956243 100644 --- a/src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs +++ b/src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs @@ -6,7 +6,6 @@ namespace ImageSharp { using System; - using System.Linq; using System.Reflection; /// @@ -18,9 +17,9 @@ namespace ImageSharp private object value; private string description; - /// + /// /// Initializes a new instance of the ExifTagDescriptionAttribute class. - /// + /// /// The value of the exif tag. /// The description for the value of the exif tag. public ExifTagDescriptionAttribute(object value, string description) diff --git a/src/ImageSharp/Profiles/Exif/ExifValue.cs b/src/ImageSharp/Profiles/Exif/ExifValue.cs index f302ca99c..d38abc25d 100644 --- a/src/ImageSharp/Profiles/Exif/ExifValue.cs +++ b/src/ImageSharp/Profiles/Exif/ExifValue.cs @@ -103,10 +103,10 @@ namespace ImageSharp return !Equals(left, right); } - /// + /// /// Determines whether the specified object is equal to the current exif value. - /// - ///The object to compare this exif value with. + /// + /// The object to compare this exif value with. public override bool Equals(object obj) { if (ReferenceEquals(this, obj)) @@ -117,10 +117,10 @@ namespace ImageSharp return this.Equals(obj as ExifValue); } - /// + /// /// Determines whether the specified exif value is equal to the current exif value. - /// - ///The exif value to compare this exif value with. + /// + /// The exif value to compare this exif value with. public bool Equals(ExifValue other) { if (ReferenceEquals(other, null)) diff --git a/src/ImageSharp/Profiles/Exif/ExifWriter.cs b/src/ImageSharp/Profiles/Exif/ExifWriter.cs index 478d6722d..b30abf666 100644 --- a/src/ImageSharp/Profiles/Exif/ExifWriter.cs +++ b/src/ImageSharp/Profiles/Exif/ExifWriter.cs @@ -16,7 +16,7 @@ namespace ImageSharp { ExifTag.ImageWidth, ExifTag.ImageLength, ExifTag.BitsPerSample, ExifTag.Compression, ExifTag.PhotometricInterpretation, ExifTag.Thresholding, ExifTag.CellWidth, - ExifTag.CellLength, ExifTag.FillOrder,ExifTag.ImageDescription, ExifTag.Make, + ExifTag.CellLength, ExifTag.FillOrder, ExifTag.ImageDescription, ExifTag.Make, ExifTag.Model, ExifTag.StripOffsets, ExifTag.Orientation, ExifTag.SamplesPerPixel, ExifTag.RowsPerStrip, ExifTag.StripByteCounts, ExifTag.MinSampleValue, ExifTag.MaxSampleValue, ExifTag.XResolution, ExifTag.YResolution,