woodjobber / flutter_image_format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_image_format

A new Flutter project.

Getting Started

  void main() async {
    final s.ByteData imageData =
    await s.rootBundle.load('assets/your_image.png');
    final imageInt8List = imageData.buffer.asUint8List();
    
    
    final imageFormat =
    ImageFormatHelper.imageFormatForImageUnit8List(
        imageInt8List);
  }

About

License:MIT License


Languages

Language:Dart 100.0%