From 1866ec65ba910f69978214d04d9ac608379fc8a0 Mon Sep 17 00:00:00 2001 From: James South Date: Wed, 25 Jun 2014 23:50:23 +0100 Subject: [PATCH] Fixing issue #59 Former-commit-id: ac374bb3f3acd7ff84cde23959bcfa134f79dbae --- src/ImageProcessor.Web/NET45/Caching/DiskCache.cs | 6 +++--- .../NET45/Configuration/ImageProcessingSection.cs | 4 ++-- .../NET45/Configuration/ImageProcessorConfiguration.cs | 4 ++-- src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs | 2 +- src/ImageProcessor.Web/NET45/Processors/Crop.cs | 2 +- src/ImageProcessor.Web/NET45/Processors/Saturation.cs | 2 +- src/ImageProcessor/Imaging/ExifPropertyTag.cs | 2 +- src/ImageProcessor/Imaging/ExifPropertyTagType.cs | 4 ++-- src/ImageProcessor/Imaging/Formats/FormatUtilities.cs | 2 +- src/ImageProcessor/Imaging/Formats/GifEncoder.cs | 4 ++-- src/ImageProcessor/Imaging/Formats/GifInfo.cs | 4 ++-- src/ImageProcessor/Imaging/Formats/WebPFormat.cs | 4 ++-- src/ImageProcessor/Processors/Rotate.cs | 2 +- src/ImageProcessor/Processors/Saturation.cs | 2 +- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs b/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs index 23612916b4..f1cefc657e 100644 --- a/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs +++ b/src/ImageProcessor.Web/NET45/Caching/DiskCache.cs @@ -42,9 +42,9 @@ namespace ImageProcessor.Web.Caching /// /// NTFS directories can handle up to 10,000 files in the directory before slowing down. /// This will help us to ensure that don't go over that limit. - /// - /// - /// + /// + /// + /// /// private const int MaxFilesCount = 100; diff --git a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs index 3942280f64..3332080b99 100644 --- a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs +++ b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessingSection.cs @@ -5,7 +5,7 @@ // // // Represents an image processing section within a configuration file. -// Nested syntax adapted from +// Nested syntax adapted from // // -------------------------------------------------------------------------------------------------------------------- @@ -21,7 +21,7 @@ namespace ImageProcessor.Web.Configuration /// /// Represents an image processing section within a configuration file. - /// Nested syntax adapted from + /// Nested syntax adapted from /// public sealed class ImageProcessingSection : ConfigurationSection { diff --git a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs index e871a5c35b..be49669665 100644 --- a/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs +++ b/src/ImageProcessor.Web/NET45/Configuration/ImageProcessorConfiguration.cs @@ -5,7 +5,7 @@ // // // Encapsulates methods to allow the retrieval of ImageProcessor settings. -// +// // // -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Web.Configuration @@ -24,7 +24,7 @@ namespace ImageProcessor.Web.Configuration /// /// Encapsulates methods to allow the retrieval of ImageProcessor settings. - /// + /// /// public sealed class ImageProcessorConfiguration { diff --git a/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs b/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs index 1fa38568c3..6845d8453b 100644 --- a/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs +++ b/src/ImageProcessor.Web/NET45/Helpers/RemoteFile.cs @@ -40,7 +40,7 @@ namespace ImageProcessor.Web.Helpers /// There shouldn't be any security issues there, as the internal WebRequest instance is still calling it remotely. /// Any local files that shouldn't be accessed by this won't be allowed by the remote call. /// - /// Adapted from BlogEngine.Net + /// Adapted from BlogEngine.Net /// internal sealed class RemoteFile { diff --git a/src/ImageProcessor.Web/NET45/Processors/Crop.cs b/src/ImageProcessor.Web/NET45/Processors/Crop.cs index 372d277c3f..c621ebd1a8 100644 --- a/src/ImageProcessor.Web/NET45/Processors/Crop.cs +++ b/src/ImageProcessor.Web/NET45/Processors/Crop.cs @@ -24,7 +24,7 @@ namespace ImageProcessor.Web.Processors { /// /// The regular expression to search strings for. - /// + /// /// private static readonly Regex QueryRegex = new Regex(@"(crop=|cropmode=)[^&]+", RegexOptions.Compiled); diff --git a/src/ImageProcessor.Web/NET45/Processors/Saturation.cs b/src/ImageProcessor.Web/NET45/Processors/Saturation.cs index 3a98bde7e6..02a750ab13 100644 --- a/src/ImageProcessor.Web/NET45/Processors/Saturation.cs +++ b/src/ImageProcessor.Web/NET45/Processors/Saturation.cs @@ -18,7 +18,7 @@ namespace ImageProcessor.Web.Processors /// Encapsulates methods to change the saturation component of the image. /// /// - /// + /// /// public class Saturation : IWebGraphicsProcessor { diff --git a/src/ImageProcessor/Imaging/ExifPropertyTag.cs b/src/ImageProcessor/Imaging/ExifPropertyTag.cs index 3af48741df..3e714d03c6 100644 --- a/src/ImageProcessor/Imaging/ExifPropertyTag.cs +++ b/src/ImageProcessor/Imaging/ExifPropertyTag.cs @@ -12,7 +12,7 @@ namespace ImageProcessor.Imaging { /// /// The following enum gives descriptions of the property items supported by Windows GDI+. - /// + /// /// TODO: Add more XML descriptions. /// public enum ExifPropertyTag diff --git a/src/ImageProcessor/Imaging/ExifPropertyTagType.cs b/src/ImageProcessor/Imaging/ExifPropertyTagType.cs index 2c3a1b3523..1d0d470f70 100644 --- a/src/ImageProcessor/Imaging/ExifPropertyTagType.cs +++ b/src/ImageProcessor/Imaging/ExifPropertyTagType.cs @@ -5,7 +5,7 @@ // // // Specifies the data type of the values stored in the value data member of that same PropertyItem object. -// +// // // -------------------------------------------------------------------------------------------------------------------- @@ -13,7 +13,7 @@ namespace ImageProcessor.Imaging { /// /// Specifies the data type of the values stored in the value data member of that same PropertyItem object. - /// + /// /// public enum ExifPropertyTagType : short { diff --git a/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs b/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs index a382e6449a..36d2e3c072 100644 --- a/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs +++ b/src/ImageProcessor/Imaging/Formats/FormatUtilities.cs @@ -27,7 +27,7 @@ namespace ImageProcessor.Imaging.Formats { /// /// Gets the correct from the given stream. - /// + /// /// /// /// The to read from. diff --git a/src/ImageProcessor/Imaging/Formats/GifEncoder.cs b/src/ImageProcessor/Imaging/Formats/GifEncoder.cs index d667f35f5f..612a453bf2 100644 --- a/src/ImageProcessor/Imaging/Formats/GifEncoder.cs +++ b/src/ImageProcessor/Imaging/Formats/GifEncoder.cs @@ -9,7 +9,7 @@ // Always wire this up in a using block. // Disposing the encoder will complete the file. // Uses default .NET GIF encoding and adds animation headers. -// Adapted from +// Adapted from // // // -------------------------------------------------------------------------------------------------------------------- @@ -27,7 +27,7 @@ namespace ImageProcessor.Imaging.Formats /// Always wire this up in a using block. /// Disposing the encoder will complete the file. /// Uses default .NET GIF encoding and adds animation headers. - /// Adapted from + /// Adapted from /// /// public class GifEncoder : IDisposable diff --git a/src/ImageProcessor/Imaging/Formats/GifInfo.cs b/src/ImageProcessor/Imaging/Formats/GifInfo.cs index c0b75bae3d..2fdc1d715c 100644 --- a/src/ImageProcessor/Imaging/Formats/GifInfo.cs +++ b/src/ImageProcessor/Imaging/Formats/GifInfo.cs @@ -5,7 +5,7 @@ // // // Provides information about an image. -// +// // // -------------------------------------------------------------------------------------------------------------------- @@ -16,7 +16,7 @@ namespace ImageProcessor.Imaging.Formats /// /// Provides information about an image. - /// + /// /// public class GifInfo { diff --git a/src/ImageProcessor/Imaging/Formats/WebPFormat.cs b/src/ImageProcessor/Imaging/Formats/WebPFormat.cs index 1617d37be1..25b0205e33 100644 --- a/src/ImageProcessor/Imaging/Formats/WebPFormat.cs +++ b/src/ImageProcessor/Imaging/Formats/WebPFormat.cs @@ -5,7 +5,7 @@ // // // Provides the necessary information to support webp images. -// Adapted from +// Adapted from // by Jose M. Piñeiro // // -------------------------------------------------------------------------------------------------------------------- @@ -25,7 +25,7 @@ namespace ImageProcessor.Imaging.Formats /// /// Provides the necessary information to support webp images. - /// Adapted from + /// Adapted from /// by Jose M. Piñeiro /// [SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "Reviewed. Suppression is OK here.")] diff --git a/src/ImageProcessor/Processors/Rotate.cs b/src/ImageProcessor/Processors/Rotate.cs index 70fabd1ccd..2e5931dcc7 100644 --- a/src/ImageProcessor/Processors/Rotate.cs +++ b/src/ImageProcessor/Processors/Rotate.cs @@ -100,7 +100,7 @@ namespace ImageProcessor.Processors /// The angle in degrees at which to rotate the image. /// The image rotated to the given angle at the given position. /// - /// Based on + /// Based on /// private Bitmap RotateImage(Image image, float rotateAtX, float rotateAtY, float angle) { diff --git a/src/ImageProcessor/Processors/Saturation.cs b/src/ImageProcessor/Processors/Saturation.cs index b8d2a0819c..341d287f35 100644 --- a/src/ImageProcessor/Processors/Saturation.cs +++ b/src/ImageProcessor/Processors/Saturation.cs @@ -21,7 +21,7 @@ namespace ImageProcessor.Processors /// Encapsulates methods to change the saturation component of the image. /// /// - /// + /// /// public class Saturation : IGraphicsProcessor {