ImageUltimate.NuGetOrg 3.6.0

Suggested Alternatives

GleamTech.ImageUltimate

Additional Details

This package has been renamed to GleamTech.ImageUltimate, please install the latest version of GleamTech.ImageUltimate instead of this package.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package ImageUltimate.NuGetOrg --version 3.6.0
NuGet\Install-Package ImageUltimate.NuGetOrg -Version 3.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ImageUltimate.NuGetOrg" Version="3.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ImageUltimate.NuGetOrg --version 3.6.0
#r "nuget: ImageUltimate.NuGetOrg, 3.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ImageUltimate.NuGetOrg as a Cake Addin
#addin nuget:?package=ImageUltimate.NuGetOrg&version=3.6.0

// Install ImageUltimate.NuGetOrg as a Cake Tool
#tool nuget:?package=ImageUltimate.NuGetOrg&version=3.6.0

ImageUltimate is the fastest and easiest ASP.NET image resizer which supports both ASP.NET MVC, ASP.NET Core and ASP.NET WebForms web applications/web sites. ImageUltimate can also be used with .NET desktop applications as web specific features are separated into Web sub-namespace.

   
Features:

- Can load and save many image file formats (raster, vector and camera raw).

- Provides a fluent interface for easily chaining image manipulation commands.

- Vastly faster (10x) than System.Drawing namespace and optimized specifically for web use.
 Minimal memory usage and the ability to process very large images in a fast manner.

- Provides detailed information about an image file like format, size, DPI, pixel format and metadata like EXIF and IPTC.

- Fast thumbnail generation, smartly looks for a EXIF thumbnail, removes black stripes above and below it and
 resizes it down further if needed.

- Provides these image transforms: Resize, LiquidResize (seam carving), Crop, TrimBorders, Rotate, Flip.

- Provides these image color/tone corrections and filters: Brightness, Contrast, Enhance, Blur, Sharpen.

- Caches generated images both on server and browser with a smart versioning algorithm. A unique and browser-cacheable url is generated according to the chained commands and whenever you change these commands (or modify the source image externally), the url will vary and this will cause browser to automatically detect changes (no need to press F5).

- Generates SEO friendly urls. By default the file name of the source image is used but it's possible to override this file name for SEO purposes.

- Single managed DLL (works both on 32-bit and 64-bit) for easy deployment and no dependencies. No messy Web.config settings. Just drop it in your bin folder and you are ready to go.

- Strongly-typed API for web, no need to learn and memorize messy url querystring parameters, just chain commands with the help of intellisense.
   
ASP.NET MVC usage example:

   @this.ImageTag("Image1.jpg", task => task.ResizeWidth(300))

ASP.NET WebForms usage example:

   <%=this.ImageTag("Image1.jpg", task => task.ResizeWidth(300)) %>

General usage examples:

   using (var imageTask = new ImageTask(@"C:\Pictures\Picture1.jpg"))
       imageTask.ResizeWidth(300).Save(@"C:\Output\Picture2.jpg");

Note: This package contains a fully working version of the product, however without a license key it will run in trial mode. This  means after 30 days, the generated images will be watermarked with a red "ImageUltimate" text at the bottom right corner.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

## Version 3.6.0 - September 12, 2019

 - **Improved:** Stability of image processing.

 - **Improved:** Handling of temporary files:

     - New property GleamTechConfiguration.TemporaryFolder for being able to use a different folder than the default system temporary
     folder. All GleamTech products will use the same folder (removed FileUltimateConfiguration.TemporaryPath property).
     When you change this property, some default folders for products will change automatically if they are subfolders of TemporaryFolder.
     You can set this property to have more control on temporary folder (adjusting permissions, observing size etc.).
     For example for web apps, you can set it to "~/App_Data/Temporary" to observe it more easily.

   - Under temporary folder, there will be no more subfolders for the products but there will be subfolders for the feature:

     "GleamTech.Core" -> "ResourceCache"
     "FileUltimate\ImageCache" -> "ImageCache"
     "FileUltimate\DocumentCache" -> "DocumentCache"
     "FileUltimate" -> removed
     "DocumentUltimate" -> removed
     "ImageUltimate" -> removed

     The old subfolders will be migrated automatically.

   - When accessing TemporaryFolder, detailed "Access Denied" error messages will be shown to troubleshoot insufficent
     permission issues. The error message will include the safe display path and current windows identity (and impersonation level).

 - **Improved:** Preparation for NetCore/NetStandard DLL.