TR.Maui.iOS.TOCropView
1.0.9
See the version list below for details.
dotnet add package TR.Maui.iOS.TOCropView --version 1.0.9
NuGet\Install-Package TR.Maui.iOS.TOCropView -Version 1.0.9
<PackageReference Include="TR.Maui.iOS.TOCropView" Version="1.0.9" />
paket add TR.Maui.iOS.TOCropView --version 1.0.9
#r "nuget: TR.Maui.iOS.TOCropView, 1.0.9"
// Install TR.Maui.iOS.TOCropView as a Cake Addin #addin nuget:?package=TR.Maui.iOS.TOCropView&version=1.0.9 // Install TR.Maui.iOS.TOCropView as a Cake Tool #tool nuget:?package=TR.Maui.iOS.TOCropView&version=1.0.9
ImageCropper.Forms
.NET MAUI plugin to crop and rotate photos.
Supports Android and iOS.
- Android library from : https://github.com/ArthurHub/Android-Image-Cropper migrar a https://github.com/CanHub/Android-Image-Cropper
- iOS library from : https://github.com/TimOliver/TOCropViewController
Features
- Cropping image.
- Rotating image.
- Aspect ratio.
- Circle/Rectangle shape.
Screen-Shots
Android
<img src="ScreenShots/Android_Rectangle.gif" alt="Crop/Rotate image(Rectangle/Android)"/> <img src="ScreenShots/Android_Circle.gif" alt="Crop/Rotate image(Circle/Android)"/>
iOS
<img src="ScreenShots/iOS_Rectangle.gif" alt="Crop/Rotate image(Rectangle/iOS)"/> <img src="ScreenShots/iOS_Circle.gif" alt="Crop/Rotate image(Circle/iOS)" />
Setup
- Install the nuget package in portable and all platform specific projects.
- This plugin uses the MediaPlugin. Be sure to complete the full setup this plugin. Please fully read through the MediaPlugin description.
Android
Add the following to your AndroidManifest.xml inside the <application> tags:
<activity android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
android:theme="@style/Base.Theme.AppCompat"/>
In MainActivity.cs file:
Stormlion.ImageCropper.Droid.Platform.Init();
global::Xamarin.Forms.Forms.Init(this, bundle);
protected override void OnActivityResult(int requestCode, Result resultCode, Intent data)
{
base.OnActivityResult(requestCode, resultCode, data);
Stormlion.ImageCropper.Droid.Platform.OnActivityResult(requestCode, resultCode, data);
}
iOS
In AppDelegate.cs file:
Stormlion.ImageCropper.iOS.Platform.Init();
Usage
Show ImageCropper page.
new ImageCropper()
{
Success = (imageFile) =>
{
Device.BeginInvokeOnMainThread(() =>
{
imageView.Source = ImageSource.FromFile(imageFile);
});
}
}.Show(this);
Show it with additional parameters.
new ImageCropper()
{
PageTitle = "Test Title",
AspectRatioX = 1,
AspectRatioY = 1,
CropShape = ImageCropper.CropShapeType.Oval,
SelectSourceTitle = "Select source",
TakePhotoTitle = "Take Photo",
PhotoLibraryTitle = "Photo Library",
CancelButtonTitle = "Cancel",
Success = (imageFile) =>
{
Device.BeginInvokeOnMainThread(() =>
{
imageView.Source = ImageSource.FromFile(imageFile);
});
}
}.Show(this);
Show it with a image
new ImageCropper()
{
Success = (imageFile) =>
{
Device.BeginInvokeOnMainThread(() =>
{
imageView.Source = ImageSource.FromFile(imageFile);
});
}
}.Show(this, imageFileName);
Properties
- PageTitle
- AspectRatioX
- AspectRatioY
- CropShape
- Initial image can be set in Show function.
Contributions
Contributions are welcome!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-ios17.5 is compatible. |
-
net8.0-ios17.5
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TR.Maui.iOS.TOCropView:
Package | Downloads |
---|---|
ImageCropper.Forms.Fix.v2
.NET MAUI plugin to crop and rotate photos. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.13 | 101 | 8/30/2024 |
1.0.12 | 101 | 8/30/2024 |
1.0.11 | 101 | 8/30/2024 |
1.0.10 | 106 | 8/30/2024 |
1.0.9 | 95 | 8/30/2024 |
1.0.8 | 113 | 8/30/2024 |
1.0.7 | 106 | 8/29/2024 |
1.0.6 | 97 | 8/29/2024 |
1.0.5 | 115 | 8/29/2024 |
1.0.4 | 98 | 8/29/2024 |
1.0.3 | 93 | 8/29/2024 |
1.0.2 | 96 | 8/29/2024 |
1.0.1 | 158 | 8/28/2024 |
1.0.0 | 104 | 8/28/2024 |