Browse Source

v1.8.2 & v3.0.1

Fixes #28
Fixes #18


Former-commit-id: 7761fb9d182129608d4d4bfddeaeffccec886fc2
pull/17/head
James South 12 years ago
parent
commit
abaef2fe44
  1. 4
      src/ImageProcessor.Web/NET45/Properties/AssemblyInfo.cs
  2. 1
      src/ImageProcessor/ImageProcessor.csproj
  3. 38
      src/ImageProcessor/Imaging/Pixel.cs
  4. 4
      src/ImageProcessor/Properties/AssemblyInfo.cs
  5. 1
      src/Nuget/ImageProcessor.1.8.2.0.nupkg.REMOVED.git-id
  6. BIN
      src/Nuget/ImageProcessor.Web.3.0.0.3.nupkg
  7. 51
      src/Nuget/ImageProcessor.Web.3.0.0.3.nuspec
  8. BIN
      src/Nuget/ImageProcessor.Web.3.0.1.0.nupkg
  9. 1
      src/TestWebsites/NET45/Test_Website_NET45/Images/Thumbs.db.REMOVED.git-id

4
src/ImageProcessor.Web/NET45/Properties/AssemblyInfo.cs

@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.0.3")]
[assembly: AssemblyFileVersion("3.0.0.3")]
[assembly: AssemblyVersion("3.0.1.0")]
[assembly: AssemblyFileVersion("3.0.1.0")]

1
src/ImageProcessor/ImageProcessor.csproj

@ -66,7 +66,6 @@
<Compile Include="Imaging\AnchorPosition.cs" />
<Compile Include="Imaging\Convolution.cs" />
<Compile Include="Imaging\GaussianLayer.cs" />
<Compile Include="Imaging\Pixel.cs" />
<Compile Include="Imaging\ColorQuantizer.cs" />
<Compile Include="Imaging\ResizeLayer.cs" />
<Compile Include="Imaging\Filters\BlackWhiteMatrixFilter.cs" />

38
src/ImageProcessor/Imaging/Pixel.cs

@ -1,38 +0,0 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Pixel.cs" company="James South">
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// <summary>
// Represents a single pixel.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Imaging
{
/// <summary>
/// Represents a single pixel.
/// </summary>
public struct Pixel
{
/// <summary>
/// The red component of the pixel.
/// </summary>
public double R;
/// <summary>
/// The green component of the pixel.
/// </summary>
public double G;
/// <summary>
/// The blue component of the pixel.
/// </summary>
public double B;
/// <summary>
/// The alpha component of the pixel.
/// </summary>
public double A;
}
}

4
src/ImageProcessor/Properties/AssemblyInfo.cs

@ -32,6 +32,6 @@ using System.Security;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.8.1.2")]
[assembly: AssemblyFileVersion("1.8.1.2")]
[assembly: AssemblyVersion("1.8.2.0")]
[assembly: AssemblyFileVersion("1.8.2.0")]

1
src/Nuget/ImageProcessor.1.8.2.0.nupkg.REMOVED.git-id

@ -0,0 +1 @@
3fc6418ca4779d20c4fad1afc82a3693dd93b9e4

BIN
src/Nuget/ImageProcessor.Web.3.0.0.3.nupkg

Binary file not shown.

51
src/Nuget/ImageProcessor.Web.3.0.0.3.nuspec

@ -0,0 +1,51 @@
<?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>

BIN
src/Nuget/ImageProcessor.Web.3.0.1.0.nupkg

Binary file not shown.

1
src/TestWebsites/NET45/Test_Website_NET45/Images/Thumbs.db.REMOVED.git-id

@ -0,0 +1 @@
680ee47c5709cf310ef41eda79f1a935f6f1fc5e
Loading…
Cancel
Save