flutter_native_image
flutter_native_image copied to clipboard
Native Flutter Image tools
This PR has a pretty basic refactor for Android to push each operation into it's own method and leave the `onMethodCall` to handle getting the arguments and calling the required...
Not so much of an issue, but I was getting a lot of system messages such as failed to close resource, tag not defined, stop reading file-offset may cause infinite...
Here is my code: ``` File compressedFile = await FlutterNativeImage.compressImage(file.path, quality: 25); ``` This gives below error on miui (Works fine on samsung or android emulator) ``` E/MethodChannel#flutter_native_image(10761): java.lang.NullPointerException: Attempt...
currently, the jcenter is down, and it's better if we can fix this on open_filex. thank you
Steps to reproduce: - Generate a file with path containing white space such as .../26-Jun-2020 12:24:45.png - Get image properties `ImageProperties properties = await FlutterNativeImage.getImageProperties(filePath);` Expected result: - Be able...
Currently the only way to load an image that i can see is by the file path. But if you already loaded an image's bytes to use somewhere else, and...
If you can add the feature which processes the image files and apply provided filter [grascale, blur, etc.] to the image and returns the processed image as the `File` it...
In my device google pixel 4 or some devices image is horizontal. You need check rotate and rotate bitmap with code below if don't want error int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,...
Your code should not run on the main thread. This will cause the program to freeze. All IO operations / time-consuming operations should be on the worker thread.
* Update to Android v2 embedding * Update gradle * Remove and gitignore generated files