mirror of https://github.com/SixLabors/ImageSharp
21 changed files with 72 additions and 92 deletions
@ -1 +0,0 @@ |
|||
997f2cbadc5add62068ac4744395cb619835b25b |
|||
@ -1 +0,0 @@ |
|||
247fa919ace01d934bd0a19d37587ad26195b33e |
|||
@ -0,0 +1 @@ |
|||
b334b903dac55dfc5156a814c1fce9cc1f10f744 |
|||
Binary file not shown.
@ -1,51 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> |
|||
<metadata> |
|||
<id>ImageProcessor.Web</id> |
|||
<version>3.0.0.3</version> |
|||
<title>ImageProcessor.Web</title> |
|||
<authors>James South</authors> |
|||
<owners>James South</owners> |
|||
<projectUrl>http://jimbobsquarepants.github.com/ImageProcessor/</projectUrl> |
|||
<iconUrl>http://raw.github.com/JimBobSquarePants/ImageProcessor/master/src/Nuget/imageprocessor.128.png</iconUrl> |
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
|||
<description> |
|||
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 |
|||
</description> |
|||
<summary>An extension to ImageProcessor that allows on-the-fly processing of image files in an ASP.NET website</summary> |
|||
<releaseNotes> |
|||
- Fixing 404 bug |
|||
- Improved cleanup to remove orphaned files |
|||
</releaseNotes> |
|||
<copyright>James South</copyright> |
|||
<language>en-GB</language> |
|||
<tags>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</tags> |
|||
<dependencies> |
|||
<group targetFramework=".NETFramework4.0"> |
|||
<dependency id="Microsoft.Bcl.Async" version="1.0.165" /> |
|||
<dependency id="Microsoft.Bcl" version="1.1.6" /> |
|||
<dependency id="ImageProcessor" version="1.8.0.0" /> |
|||
</group> |
|||
<group targetFramework=".NETFramework4.5"> |
|||
<dependency id="ImageProcessor" version="1.8.0.0" /> |
|||
</group> |
|||
</dependencies> |
|||
</metadata> |
|||
<files> |
|||
<file src="content\config\imageprocessor\cache.config" target="content\config\imageprocessor\cache.config" /> |
|||
<file src="content\config\imageprocessor\processing.config" target="content\config\imageprocessor\processing.config" /> |
|||
<file src="content\config\imageprocessor\security.config" target="content\config\imageprocessor\security.config" /> |
|||
<file src="content\web.config.transform" target="content\web.config.transform" /> |
|||
<file src="lib\net40\ImageProcessor.Web.dll" target="lib\net40\ImageProcessor.Web.dll" /> |
|||
<file src="lib\net45\ImageProcessor.Web.dll" target="lib\net45\ImageProcessor.Web.dll" /> |
|||
<file src="tools\install.ps1" target="tools\install.ps1" /> |
|||
</files> |
|||
</package> |
|||
Binary file not shown.
@ -1,10 +1,14 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<packages> |
|||
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.Mvc.FixedDisplayModes" version="1.0.1" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.WebApi" version="4.0.20710.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.WebApi.Client" version="4.0.20710.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.WebApi.Core" version="4.0.20710.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.WebApi.WebHost" version="4.0.20710.0" targetFramework="net45" /> |
|||
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net45" /> |
|||
<package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net45" /> |
|||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" /> |
|||
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net45" /> |
|||
</packages> |
|||
Loading…
Reference in new issue