flutter_luban
A image compress package like Luban for dart.
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);
});
});
Credit (github url) : https://github.com/crazecoder/flutter_luban
Next Article : https://flutterappdev.com/2019/02/28/a-simple-flutter-project-demonstrating-tailored-native-experiences/







