FLUTTER ECOSYSTEM

boring-km/dynamic_image_crop

एक फ्लटर पैकेज जो रेखाओं को बनाकर या विभिन्न आकारों में कटौती करके छवि को काटता है

dynamic_image_crop प्रोजेक्ट कवर
Stars
3
Forks
2
अंतिम पुश (UTC)
2 सित॰ 2023
प्रोजेक्ट स्थिति
सक्रिय
Kangmin GitHub avatar
GITHUB User

Kangmin ↗

열등감을 극복중인 사람

Woongjin Thinkbig Co.Republic of Koreaआधिकारिक वेबसाइट ↗
भाषाएँDartC++CMakeRubyHTMLSwiftCShellKotlinObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 3 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • very_good_analysisडेवलपमेंट

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

dynamic_image_crop

Pub https://codecov.io/gh/boring-km/dynamic_image_crop/branch/master/graph/badge.svg?token=c8fbc37f-5266-4bdb-8b09-ccb7ba5bf711 Flutter Demo License: MIT


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
}