SmallerImages 1.0.1
See the version list below for details.
dotnet add package SmallerImages --version 1.0.1
NuGet\Install-Package SmallerImages -Version 1.0.1
<PackageReference Include="SmallerImages" Version="1.0.1" />
paket add SmallerImages --version 1.0.1
#r "nuget: SmallerImages, 1.0.1"
// Install SmallerImages as a Cake Addin #addin nuget:?package=SmallerImages&version=1.0.1 // Install SmallerImages as a Cake Tool #tool nuget:?package=SmallerImages&version=1.0.1
SmallerImages
If you want to reduce the file size of images uploaded to your Umbraco website, then this is the package for you. You can set a maximum width and height, this package will replace the original image with a smaller cropped version. It also allows you to create another crop of the image, perhaps a smaller preview size image.
To use this in your Umbraco website, the best way to install it is using NuGet:
Install-Package SmallerImages
Then just add these app settings to your web.config file and edit the values accordingly:
<add key="ImageResizeWidth" value="1920" />
<add key="ImageResizeHeight" value="1080" />
<add key="ImageResizeSuffix" value="1080p" />
<add key="ImageResizeKeepOriginal" value="false" />
<add key="ImageResizeUpscale" value="false" />
<add key="ImageResizePreviewWidth" value="240" />
<add key="ImageResizePreviewHeight" value="136" />
<add key="ImageResizePreviewSuffix" value="_preview" />
<add key="ImageResizeMaintainRatio" value="false" />
<add key="ImageResizeApplyToExistingImages" value="true" />
FAQs
Does it work with existing images?
Yes it does, you can enable it by setting this appSetting value to
true
<add key="ImageResizeApplyToExistingImages" value="true" />
How do I turn off the preview image crop?
Change these config settings to the values as they are below:
<add key="ImageResizePreviewWidth" value="0" /> <add key="ImageResizePreviewHeight" value="0" /> <add key="ImageResizePreviewSuffix" value="" />
What happens to the original image?
It's completely up to you. If you don't want to keep it you can set this value to false, otherwise set it to true.
<add key="ImageResizeKeepOriginal" value="false" />
Special Thanks
This project would not exist if it wasn't for James South creating ImageProcessor
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. 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. |
-
- ClientDependency (>= 1.9.2)
- log4net (>= 2.0.8)
- Microsoft.AspNet.Mvc (>= 5.2.3)
- Microsoft.Owin (>= 3.0.1)
- Microsoft.Owin.Security (>= 3.0.1)
- Microsoft.Owin.Security.Cookies (>= 3.0.1)
- Microsoft.Owin.Security.OAuth (>= 3.0.1)
- Newtonsoft.Json (>= 10.0.2)
- UmbracoCms.Core (>= 7.6.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- fixed bug where the image is removed and there is no file path