Skip to content

A Flutter Package that crops the image by drawing lines or cropping into various shapes

License

Notifications You must be signed in to change notification settings

ssk-flutter/dynamic_image_crop

 
 

Repository files navigation

dynamic_image_crop

A Flutter package to crop images into various shapes.

Introduction

demo

You can test the package by this link: demo_link

Features

dynamic_image_crop supports the following features:

  • Crop an image into user drawing shapes.
  • Crop an image into rectangle, circle, triangle shapes.
  • Change the color of the crop shape line.
  • Change the width of the crop shape line.

Usage

import 'package:dynamic_image_crop/dynamic_image_crop.dart';

final controller = CropController();

DynamicImageCrop(
  controller: controller,
  image: image!,  // Uint8List
  onResult: (image, width, height) {
    // cropped Image (Uint8List), width and height
  },
  cropLineColor: Colors.red, // (Optional)
  cropLineWidth: 1.0, // (Optional)
)

DynamicImageCrop.fromFile(
  imageFile: file,  // File
  controller: controller,
  onResult: (image, width, height) {
    // cropped Image (Uint8List), width and height
  },
)

CropController has the following methods:

void cropImage() {}
void changeType(CropType type) {}
void changeImage(Uint8List image) {}
void clearCropArea() {}

CropType has the following types:

enum CropType {
  rectangle, circle, triangle, drawing, none
}

About

A Flutter Package that crops the image by drawing lines or cropping into various shapes

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 46.1%
  • C++ 24.9%
  • CMake 20.5%
  • Ruby 3.0%
  • HTML 2.1%
  • Swift 1.6%
  • Other 1.8%