Imagise.Cropper
24.9.1
dotnet add package Imagise.Cropper --version 24.9.1
NuGet\Install-Package Imagise.Cropper -Version 24.9.1
<PackageReference Include="Imagise.Cropper" Version="24.9.1" />
paket add Imagise.Cropper --version 24.9.1
#r "nuget: Imagise.Cropper, 24.9.1"
// Install Imagise.Cropper as a Cake Addin #addin nuget:?package=Imagise.Cropper&version=24.9.1 // Install Imagise.Cropper as a Cake Tool #tool nuget:?package=Imagise.Cropper&version=24.9.1
Imagise.Cropper plugin for .NET
** Imagise.Cropper plugin .NET captures essential fragments and resize them to fit popular document or social network dimensions by cropping images or photos, utilizing the selection of rectangular sections.**
Platform Independence
Imagise.Cropper plugin for .NET can be used to develop applications on Windows Desktop (x86, x64), Windows Server (x86, x64), Windows Azure, Windows Embedded (CE 6.0 R2), as well as Linux x64 and MacOs. The supported platforms include .Net6.0, .Net7.0, .Net8.0.
New Features & Enhancements in Version 24.9
Imagise.Cropper is live.
Getting Started with Imagise.Cropper plugin for .NET
Ready to try the Imagise.Cropper plugin for .NET? You can easily add the Imagise.Cropper NuGet package to your .NET application by running the following command in the Package Manager Console in Visual Studio:
Install-Package Imagise.Cropper
If you already have Imagise.Cropper installed and want to upgrade to the latest version, simply run:
Update-Package Imagise.Cropper
This will ensure you have the most up-to-date version.
The following examples can help guide you in using the crop feature in your application.
Crop the tiff image
using Imagise.Core;
using Imagise.Cropper;
string inputFolder = "<<your input folder>>";
string outputFolder = "<<your output folder>>";
var fileName = "template.tif";
using (var image = Image.Load(Path.Combine(inputFolder, fileName)))
{
image.Crop(image.Width / 4, image.Width / 4, image.Height / 4, image.Height / 4);
image.Save(Path.Combine(outputFolder, fileName));
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
- System.Text.Encoding.CodePages (>= 7.0.0)
-
net8.0
- Newtonsoft.Json (>= 13.0.1)
- System.Text.Encoding.CodePages (>= 7.0.0)
GitHub repositories
This package is not used by any popular GitHub repositories.