From e4a5639ea0a0ab832683c2e3becfedce1cdf862a Mon Sep 17 00:00:00 2001 From: James South Date: Fri, 28 Mar 2014 17:41:25 +0000 Subject: [PATCH] Adding nuspec files Former-commit-id: b780e1c0c3a3098b94830656bc7bbcbcc132f173 --- nuspecs/ImageProcessor.Web.Config.nuspec | 29 ++++++++++++ nuspecs/ImageProcessor.Web.nuspec | 44 +++++++++++++++++++ nuspecs/ImageProcessor.nuspec | 30 +++++++++++++ .../NET45/Config/ImageProcessorConfig.cs | 2 +- 4 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 nuspecs/ImageProcessor.Web.Config.nuspec create mode 100644 nuspecs/ImageProcessor.Web.nuspec create mode 100644 nuspecs/ImageProcessor.nuspec diff --git a/nuspecs/ImageProcessor.Web.Config.nuspec b/nuspecs/ImageProcessor.Web.Config.nuspec new file mode 100644 index 000000000..f34e7205b --- /dev/null +++ b/nuspecs/ImageProcessor.Web.Config.nuspec @@ -0,0 +1,29 @@ + + + + ImageProcessor.Web.Config + 1.0.0.0 + ImageProcessor.Web.Config + James South + James South + http://jimbobsquarepants.github.com/ImageProcessor/ + http://raw.github.com/JimBobSquarePants/ImageProcessor/master/src/Nuget/imageprocessor.128.png + false + Adds configuration to your ImageProcessor.Web solution to allow you to override the default settings. + +If you use ImageProcessor please get in touch via my twitter @james_m_south + +Feedback is always welcome + ImageProcessor.Web configuration settings for ASP.NET websites. + + James South + en-GB + Image Imaging ASP Performance Processing HttpModule Cache Resize Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png Fluent GDI Gaussian Blur Sharpen + + + + + + + + \ No newline at end of file diff --git a/nuspecs/ImageProcessor.Web.nuspec b/nuspecs/ImageProcessor.Web.nuspec new file mode 100644 index 000000000..83fb7a115 --- /dev/null +++ b/nuspecs/ImageProcessor.Web.nuspec @@ -0,0 +1,44 @@ + + + + ImageProcessor.Web + 3.2.0.0 + ImageProcessor.Web + James South + James South + http://jimbobsquarepants.github.com/ImageProcessor/ + http://raw.github.com/JimBobSquarePants/ImageProcessor/master/src/Nuget/imageprocessor.128.png + false + ImageProcessor.Web adds a configurable HttpModule to your website which allows on-the-fly processing of image files. The module also comes with a file and browser based cache that can handle millions of images, increasing your processing output and saving precious server memory. + +Methods include: Resize, Rotate, Rounded Corners, Flip, Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency. + +This package also requires Microsoft.Bcl.Async on .NET 4.0 which will be added on install if applicable. + +If you use ImageProcessor please get in touch via my twitter @james_m_south + +Feedback is always welcome + An extension to ImageProcessor that allows on-the-fly processing of image files in an ASP.NET website + - Made install configuration free. + James South + en-GB + Image Imaging ASP Performance Processing HttpModule Cache Resize Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png Fluent GDI Gaussian Blur Sharpen + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/nuspecs/ImageProcessor.nuspec b/nuspecs/ImageProcessor.nuspec new file mode 100644 index 000000000..170c1d766 --- /dev/null +++ b/nuspecs/ImageProcessor.nuspec @@ -0,0 +1,30 @@ + + + + ImageProcessor + 1.8.6.1 + ImageProcessor + James South + James South + http://jimbobsquarepants.github.com/ImageProcessor/ + http://raw.github.com/JimBobSquarePants/ImageProcessor/master/src/Nuget/imageprocessor.128.png + false + Image Processor is an easy to use and extend processing library written in C#. Its fluent API makes common imaging tasks very simple to perform. + +Methods include; Resize, Rotate, Rounded Corners, Flip, Crop, Watermark, Filter, Saturation, Brightness, Contrast, Quality, Format, Vignette, Gaussian Blur, Gaussian Sharpen, and Transparency. + +If you use ImageProcessor please get in touch on my twitter @james_m_south. + + +Feedback is always welcome. + A library for manipulating image files written in C#. + - Fixed culture issues on number parsers + James South + en-GB + Image Imaging ASP Performance Processing Resize Rotate RoundedCorners Flip Crop Filter Effects Quality Watermark Alpha Vignette Saturation Brightness Contrast Gif Jpg Jpeg Bitmap Png Fluent GDI Gaussian Blur Sharpen + + + + + + \ No newline at end of file diff --git a/src/ImageProcessor.Web/NET45/Config/ImageProcessorConfig.cs b/src/ImageProcessor.Web/NET45/Config/ImageProcessorConfig.cs index d5f457798..21c848a61 100644 --- a/src/ImageProcessor.Web/NET45/Config/ImageProcessorConfig.cs +++ b/src/ImageProcessor.Web/NET45/Config/ImageProcessorConfig.cs @@ -204,7 +204,7 @@ namespace ImageProcessor.Web.Config if (presetElement != null) { - PresetSettings.Add(presetElement.Name, presetElement.Value); + PresetSettings[presetElement.Name] = presetElement.Value; } }