TR.Maui.iOS.TOCropView 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package TR.Maui.iOS.TOCropView --version 1.0.1                
NuGet\Install-Package TR.Maui.iOS.TOCropView -Version 1.0.1                
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="TR.Maui.iOS.TOCropView" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TR.Maui.iOS.TOCropView --version 1.0.1                
#r "nuget: TR.Maui.iOS.TOCropView, 1.0.1"                
#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 TR.Maui.iOS.TOCropView as a Cake Addin
#addin nuget:?package=TR.Maui.iOS.TOCropView&version=1.0.1

// Install TR.Maui.iOS.TOCropView as a Cake Tool
#tool nuget:?package=TR.Maui.iOS.TOCropView&version=1.0.1                

ImageCropper.Forms

.NET MAUI plugin to crop and rotate photos.

NuGet

Supports Android and iOS.

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

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 Compatible and additional computed target framework versions.
.NET net8.0-ios17.5 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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 75 8/30/2024
1.0.12 76 8/30/2024
1.0.11 78 8/30/2024
1.0.10 84 8/30/2024
1.0.9 71 8/30/2024
1.0.8 89 8/30/2024
1.0.7 72 8/29/2024
1.0.6 73 8/29/2024
1.0.5 69 8/29/2024
1.0.4 75 8/29/2024
1.0.3 71 8/29/2024
1.0.2 75 8/29/2024
1.0.1 93 8/28/2024
1.0.0 81 8/28/2024