图片裁剪器

一个支持裁剪图片的 Android 和 iOS Flutter 插件。

android

ios

安装

Android

  • 将 UCropActivity 添加到你的 AndroidManifest.xml 中
<activity
    android:name="com.yalantis.ucrop.UCropActivity"
    android:screenOrientation="portrait"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>

iOS

  • 无需配置

示例

Future<Null> _cropImage(File imageFile) async {
    File croppedFile = await ImageCropper.cropImage(
      sourcePath: imageFile.path,
      ratioX: 1.0,
      ratioY: 1.0,
      maxWidth: 512,
      maxHeight: 512,
    );
}

GitHub

https://github.com/hnvn/flutter_image_cropper