flutter_libraw library

The Flutter LibRaw package aims to provide the ability to read camera RAW files to Dart/Flutter applications.

Properties

flutterLibRawBindings FlutterLibRawBindings
A reference to the bindings.
getter/setter pair

Functions

arrayToString(Array<Uint8> arr) String
Convenience method to convert an int array to a Dart String.
determineLibraryName() String
Determine the library name based on the current platform.
loadLibRaw(File file) Future<bool>
Load the dynamic library from the given file. Returns true if successful, false otherwise
pointerToUint8List(Pointer<Uint8> data, int length) Uint8List
Convenience method to convert a int pointer to a Uint8List. You need to know the length of the data and pass that in as a parameter.