I want to find a dart package that can convert an image format to webp. Since i want to run it on Isolate i can only use dart package.
I have tried packages like FlutterImageCompress which can't run on isolate, image this can only read webp.
Can someone help me to find a way to do this?
I want to find a dart package that can convert an image format to webp. Since i want to run it on Isolate i can only use dart package.
I have tried packages like FlutterImageCompress which can't run on isolate, image this can only read webp.
Can someone help me to find a way to do this?
Share Improve this question asked Feb 16 at 4:43 unrealt3nunrealt3n 157 bronze badges1 Answer
Reset to default 0This is an open issue for package:image`. I'm not sure if any package already supports encoding webp on pub.
You could use FFIgen to generate bindings for https://github/webmproject/libwebp yourself and use that.