• Stars
    star
    211
  • Rank 182,995 (Top 4 %)
  • Language
    Dart
  • License
    BSD 3-Clause "New...
  • Created over 5 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An image compress package like Luban for Dart

flutter_luban

pub package

An image compress package like Luban for Dart, based on image.This library has no system platform constraints.

Example

   CompressObject compressObject = CompressObject(
         imageFile:imageFile, //image
         path:tempDir.path, //compress to path
         quality: 85,//first compress quality, default 80
         step: 9,//compress quality step, The bigger the fast, Smaller is more accurate, default 6
         mode: CompressMode.LARGE2SMALL,//default AUTO
       );
    Luban.compressImage(compressObject).then((_path) {
        setState(() {
          print(_path);
        });
    });